summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0122-26.cs
blob: 63733c4a79a22f1dc5674ef5c498cadf3f9fa102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0122: `C.I' is inaccessible due to its protection level
// Line: 11

class C
{
	protected interface I
	{
	}
}

class A : C.I
{
}