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

interface A<T>
{
}

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