Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs1961-15.cs
1 // CS1961: The covariant type parameter `U' must be contravariantly valid on `D<U>()'
2 // Line: 8
3
4 interface I<in T>
5 {
6 }
7
8 delegate I<U[]> D<out U> ();