summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1961-20.cs
blob: 407b5205b822436a7deb6000ca84b9ee56554321 (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<T> C();
}