New tests, updates
[mono.git] / mcs / errors / gcs1961.cs
1 // CS1961: The contravariant type parameter `T' must be covariantly valid on `A<T>.B()'\r
2 // Line: 7\r
3 // Compiler options: -langversion:future
4
5 interface A<in T>
6 {
7         T B();
8 }