[eglib] In AIX/generic POSIX, handle null addresses better (#17892)
[mono-project.git] / mcs / tests / test-576.cs
blobd865b5572b8ef200bba2f036b4297e087bdd3f64
1 class Foo {
2 public static void Main ()
4 int a = 0;
5 int b = 5;
6 a += -b;
7 if (a != -5)
8 throw new System.Exception ();