In ilasm/tests:
[mcs.git] / errors / cs1540-7.cs
blob74ad3408228ca212f0a9ee5d949a08230350535f
1 // cs1540-7.cs: Cannot access protected member `A.Test' via a qualifier of type `B'; the qualifier must be of type `C' (or derived from it)
2 // Line: 17
4 class A
6 protected object[] Test { get { return null; } }
9 class B : A
13 class C: A
15 public void Test2 (B b)
17 foreach (object o in b.Test)