[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs1540-4.cs
blob19b5cc7e918a3f58573cec66ec6b17ff90ae944f
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
4 class A
6 protected void n () { }
9 class B : A
11 public static void Main ()
13 A b = new A ();
14 b.n ();