summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1961-9.cs
blob: 20e3bfb2e8cd16d4525987ad6f4f0aedcc0c51f1 (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<T> B<in T> ();