summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1961-16.cs
blob: 9c79f5081d508996853ef681f9697c4b95e23af7 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1961: The contravariant type parameter `T' must be invariantly valid on `B<T>'
// Line: 8

interface A<T>
{
}

interface B<in T> : A<T>
{
}