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

interface I
{
}

public class C<T>  where T : I
{
}