0b212ae91766666b9ad63b94f74b8084cedb7632
[mono.git] / mcs / errors / gcs8033.cs
1 // CS8033: Contravariant type parameters can only be used in input positions\r
2 // Line: 7\r
3 // Compiler options: -langversion:future
4
5 interface A<in T>
6 {
7         T B();
8 }