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

cs0060-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73b5d3fdeb67673dab53da6af2625893b42e8841 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0060: Inconsistent accessibility: base class `A.B.Base' is less accessible than class `A.B.Derived'
// Line: 9

internal class A
{
	protected class B
	{
		protected class Base {}
		public class Derived : Base { }
	}
}