Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / gtest-initialize-12.cs
blob63b3effe0a0837fb3eb60ce81f74c03c3982c0ad
1 class C : B
3 public override int Foo { set {} }
6 abstract class B
8 public abstract int Foo { set; }
11 public class Test
13 static int Foo { set {} }
15 public static void Main ()
17 var c = new C () { Foo = 1 };