Files
linux-packaging-mono/mcs/tests/test-576.cs

11 lines
134 B
C#
Raw Normal View History

class Foo {
public static void Main ()
{
int a = 0;
int b = 5;
a += -b;
if (a != -5)
throw new System.Exception ();
}
}