[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-576.cs
1 class Foo {
2         public static void Main ()
3         {
4                 int a = 0;
5                 int b = 5;
6                 a += -b;
7                 if (a != -5)
8                         throw new System.Exception ();
9         }
10 }