[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-529.cs
1 class C
2 {
3         enum E
4         {
5                 A
6         }
7         
8         public static void Main ()
9         {
10                 int i;
11                 i = sizeof (int);
12                 i = sizeof(E);
13                 i = sizeof(decimal);
14         }
15 }