[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-215.cs
1 using C1 = N1.C1;
2
3 public class Test {
4         private static C1 c1 = null;
5
6         public static C1 C1 {
7                 get {
8                         return c1;
9                 }
10         }
11
12         public static int Main() {
13                 C1 tmp = C1;
14                 return 0;
15         }
16 }
17
18 namespace N1 {
19     public class C1 {
20     }
21 }