2009-12-17 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / errors / gcs1961-15.cs
1 // CS1961: The covariant type parameter `U' must be contravariantly valid on `D<U>()'\r
2 // Line: 9\r
3 // Compiler options: -langversion:future
4
5 interface I<in T>
6 {
7 }
8
9 delegate I<U[]> D<out U> ();