Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / test-493.cs
blobef804e1c5c7e209f751e565c74892faf8dd2f01c
1 class A {
2 protected int f { get { return 1; } }
5 class B : A {
6 int bar () { return new C().f; }
9 class C : B {
10 public static void Main () {}