2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1961-30.cs
blob609b6fbd7fea9507b40cd9fddc55bc39eeb58098
1 // CS1961: The covariant type parameter `U' must be contravariantly valid on `D<U>()'
2 // Line: 7
3 // Compiler options: -langversion:future
5 interface IContravariant<in T> { }
7 delegate IContravariant<U[]> D<out U> ();