2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-493.cs
blobb427f77f889b0ead2e10929c4778136aaff139bb
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 static void Main () {}