2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1961-15.cs
blob7a0b81be5812965bbeb1f9b03877ae4ebe8dc295
1 // CS1961: The covariant type parameter `U' must be contravariantly valid on `D<U>()'
2 // Line: 9
3 // Compiler options: -langversion:future
5 interface I<in T>
9 delegate I<U[]> D<out U> ();