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

cs0052-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d6954465666d42c3a7aff7803580ebfeee343b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0052: Inconsistent accessibility: field type `A.B' is less accessible than field `A.C.D.b'
// Line: 12

public class A
{
	private class B { }

	public class C
	{
		protected class D
		{
			protected B b;
		}
	}
}