New tests, updates
[mono.git] /
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 }