update readme (#21797)
[mono-project.git] / mcs / tests / gtest-autoproperty-07.cs
blob1cf6f54bdd4477f17c5748e4a6f40427884e342d
1 struct Foo
3 public Foo (object newValue)
4 : this ()
6 this.NewValue = newValue;
9 public object NewValue
11 get;
12 private set;
16 class C
18 public static void Main ()