2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1540.cs
blob00dd94f84aef69c3b89505957cc6618914aa78e0
1 // cs1540.cs: 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
4 class A
6 protected int n;
9 class B : A
11 public static void Main ()
13 A b = new A ();
14 b.n = 1;