2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs8035-3.cs
blob82a2ff6197a5e1b862e441914466efc2e744bbc3
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<T> C();