[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-767.cs
1 class Test
2 {
3         public static int Foo ()
4         {
5                 return 5;
6         }
7         
8         public static void Main ()
9         {
10         }
11 }
12
13 struct S
14 {
15         static int v = Test.Foo ();
16         
17         Test Test { 
18                 get {
19                         return new Test ();
20                 }
21         }
22 }