Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-493.cs
1 class A {
2         protected int f { get { return 1; } }
3 }
4
5 class B : A {
6          int bar () { return new C().f; } 
7    }
8    
9 class C : B {
10         public static void Main () {}
11