[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-autoproperty-14.cs
1 public struct S
2 {
3         public int A { get; set;}
4
5         public S (int a)
6         {
7                 this.A = a;
8         }
9
10         public static void Main ()
11         {
12                 
13         }
14 }