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

interface A<in T>
{
}

interface B<out T>
{
	A<T> A { get; }
}