2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs8034-6.cs
blobe2772215c2b7b85575b7be84d47b9676d5e753be
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 void C(A<A<T>> a);