summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1961-10.cs
blob: 5a159e0163b04244c4b04e6f3d4eea7b0bc108fa (plain)
1
2
3
4
5
6
7
8
// CS1961: The contravariant type parameter `T' must be invariantly valid on `B<T>()'
// Line: 8

interface A<T>
{
}

delegate A<A<T>> B<in T> ();