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

interface A<T>
{
}

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