blob: 19b5cc7e918a3f58573cec66ec6b17ff90ae944f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// CS1540: Cannot access protected member `A.n()' via a qualifier of type `A'. The qualifier must be of type `B' or derived from it
// Line: 14
class A
{
protected void n () { }
}
class B : A
{
public static void Main ()
{
A b = new A ();
b.n ();
}
}
|