Jo Shields fe777c5c82 Imported Upstream version 3.8.0
Former-commit-id: 6a76a29bd07d86e57c6c8da45c65ed5447d38a61
2014-09-04 09:07:35 +01:00

45 lines
517 B
C#

enum MyEnum : byte
{
Value_1 = 1
}
enum E : ushort
{
V = 1
}
public class C
{
public static int Main ()
{
MyEnum me = MyEnum.Value_1;
MyEnum b = ~me;
if (b != (MyEnum)254)
return 1;
byte r = b - me;
if (r != 253)
return 2;
b = b - 2;
if (b != (MyEnum)252)
return 3;
me -= MyEnum.Value_1;
b = (MyEnum)255;
b &= ~MyEnum.Value_1;
if (b != (MyEnum)254)
return 4;
var e = E.V;
checked {
var res = ~e;
}
System.Console.WriteLine ("OK");
return 0;
}
}