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

cs0060-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7fecf37429bfadf5b5a0eb6f2fb31141f7bdc40e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// CS0060: Inconsistent accessibility: base class `B.C.E' is less accessible than class `B.A.D'
// Line: 15

public class B
{
	protected class C : A
	{
		public class E
		{
		}
	}

	protected internal class A
	{
		protected class D : C.E
		{
		}
	}
}