Merge pull request #5714 from alexischr/update_bockbuild
[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 }