summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1961-7.cs
blob: 6e764c4baf9dfce84fc81c8b72c190b4c61a0a11 (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(A<T>)'
// Line: 8

interface A<T>
{
}

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