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

interface A<T>
{
}

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