cleol
[mcs.git] / errors / gcs1961-20.cs
blob02809ac579ff3f1ba6ba80cb09a7b49c7463544f
1 // CS1961: The covariant type parameter `T' must be invariantly valid on `B<T>.C()'
2 // Line: 9
3 // Compiler options: -langversion:future
5 interface A<T>
9 interface B<out T>
11 A<T> C();