summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1961-24.cs
blob: 44ff2e105c5c275155d0de3944cea202f1ac8560 (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<T> B<out T> ();