blob: f60ce56a7f32c9ecf10aea94a704840f62f84580 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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 int n;
}
class B : A
{
public static void Main ()
{
A b = new A ();
b.n = 1;
}
}
|