Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / gtest-initialize-12.cs
1 class C : B
2 {
3         public override int Foo { set {} }
4 }
5
6 abstract class B
7 {
8         public abstract int Foo { set; }
9 }
10
11 public class Test
12 {
13         static int Foo { set {} }
14
15         public static void Main ()
16         {
17                 var c = new C () { Foo = 1 };
18         }
19 }