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

interface A<T>
{
}

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