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