Xamarin Public Jenkins f3e3aab35a Imported Upstream version 4.3.2.467
Former-commit-id: 9c2cb47f45fa221e661ab616387c9cda183f283d
2016-02-22 11:00:01 -05:00

89 lines
1.0 KiB
C#

using System;
enum E : sbyte
{
V = 1
}
struct S
{
public static bool operator == (S s, S i)
{
throw new ApplicationException ();
}
public static bool operator != (S s, S i)
{
throw new ApplicationException ();
}
public static implicit operator int? (S s)
{
throw new ApplicationException ();
}
public static implicit operator E? (S s)
{
return null;
}
}
class C
{
public static int Main ()
{
E? a = E.V;
E? a_n = null;
E? b = E.V;
E? b_n = null;
if (a != b)
return 1;
if (a == a_n)
return 2;
if (a_n != b_n)
return 3;
E e = (E) 4;
S s;
if (e == s)
return 10;
if (s == e)
return 11;
if (e > s)
return 12;
if (s > e)
return 13;
if ((s & e) != null)
return 14;
if ((s & e) != null)
return 15;
var res1 = (E?) 1 == null;
if (res1)
return 16;
var res2 = null == (E?) 1;
if (res2)
return 17;
var r1 = a_n & E.V;
if (r1 != null)
return 18;
var r2 = E.V & a_n;
if (r2 != null)
return 19;
Console.WriteLine ("ok");
return 0;
}
}