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