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

interface A<T>
{
}

interface B<in T>
{
	A<A<T>> A { get; }
}