summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1961-15.cs
blob: 3d0cb726caa763f58e84d02c8a587c29c553f042 (plain)
1
2
3
4
5
6
7
8
// CS1961: The covariant type parameter `U' must be contravariantly valid on `D<U>()'
// Line: 8

interface I<in T>
{
}

delegate I<U[]> D<out U> ();