2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs8035-4.cs
blob9623af7a3c0b029256fb1f125f96090c3befe6e6
1 // CS8035: Covariant type parameters can only be used as type arguments in covariant positions
2 // Line: 11
3 // Compiler options: -langversion:future
5 interface A<T>
9 interface B<out T>
11 A<A<T>> C();