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

interface A<T>
{
}

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