Remove unnecessary future option
[mono.git] / mcs / errors / cs1961-30.cs
1 // CS1961: The covariant type parameter `U' must be contravariantly valid on `D<U>()'
2 // Line: 6
3
4 interface IContravariant<in T> { }
5
6 delegate IContravariant<U[]> D<out U> ();