summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0703-2.cs
blob: e07b6737d8718f85d30a4dd48261e6522b20b89e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0703: Inconsistent accessibility: constraint type `A.B<T>.C' is less accessible than `A.B<T>'
// Line: 6

public class A
{
	protected internal class B<T> where T : B<T>.C
	{
		internal class C
		{
		}
	}
}