[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs1961-15.cs
blob3d0cb726caa763f58e84d02c8a587c29c553f042
1 // CS1961: The covariant type parameter `U' must be contravariantly valid on `D<U>()'
2 // Line: 8
4 interface I<in T>
8 delegate I<U[]> D<out U> ();