[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-590.cs
1 using System;
2
3 enum E
4 {
5         V
6 }
7
8 class C
9 {
10         public static void Main ()
11         {
12                 byte? foo = 0;
13                 E e = 0;
14                 var res = foo - e;
15                 Console.WriteLine (res);
16                 var res2 = e - foo;
17                 Console.WriteLine (res2);
18                 res = null;
19                 res2 = null;
20         }
21 }