cleol
[mcs.git] / errors / gcs1961-4.cs
blobd7d6260f99b7094a66d3a78051370ccc9ff19ad9
1 // CS1961: The contravariant type parameter `T' must be invariantly valid on `B<T>.A'
2 // Line: 9
3 // Compiler options: -langversion:future
5 interface A<T>
9 interface B<in T>
11 A<A<T>> A { get; }