Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-autoproperty-07.cs
1 struct Foo
2 {
3         public Foo (object newValue)
4                 : this ()
5         {
6                 this.NewValue = newValue;
7         }
8
9         public object NewValue
10         {
11                 get;
12                 private set;
13         }
14 }
15
16 class C
17 {
18         public static void Main ()
19         {
20         }
21 }