Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1540.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00dd94f84aef69c3b89505957cc6618914aa78e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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
// Line: 14

class A
{
    protected int n;
}

class B : A
{
    public static void Main ()
	{
		A b = new A ();
		b.n = 1;
	}
}