13 lines
87 B
C#
Raw Normal View History

enum E
{
X = 0
}
class Test
{
public static void Main ()
{
E e = 1 - 2 + 1;
}
}