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

interface A<T>
{
}

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