[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1540.cs
1 // CS1540: Cannot access protected member `A.n' via a qualifier of type `A'. The qualifier must be of type `B' or derived from it
2 // Line: 14
3
4 class A
5 {
6     protected int n;
7 }
8
9 class B : A
10 {
11     public static void Main ()
12         {
13                 A b = new A ();
14                 b.n = 1;
15         }
16 }