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

interface A<T>
{
}

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