2009-05-13 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs8034.cs
blobf95cfe079c19a02ebfb2ccf86b78ca1a2f58b391
1 // CS8034: Contravariant type parameters can only be used as type arguments in contravariant positions
2 // Line: 11
3 // Compiler options: -langversion:future
5 interface A<T>
9 interface B<in T>
11 A<T> A { get; }