1 2 3 4 5 6 7 8 9 10 11 12
enum E { X = 0 } class Test { public static void Main () { E e = 1 - 2 + 1; } }