summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1961-5.cs
blob: 921c90e2c476248c4591dffdea4a7d8612e93795 (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>.C()'
// Line: 8

interface A<T>
{
}

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