eol
[mcs.git] / tests / test-576.cs
blobbcf74ad75669d4921cf8d021b812a6127b92dda2
1 class Foo {
2 static void Main ()
4 int a = 0;
5 int b = 5;
6 a += -b;
7 if (a != -5)
8 throw new System.Exception ();