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

interface A<T>
{
}

interface B<out T>
{
	A<A<T>> C();
}