2009-05-13 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs8035-10.cs
blobe26cb0d20665e210994352087336ac8e1358143e
1 // CS8035: Covariant type parameters can only be used as type arguments in covariant positions
2 // Line: 9
3 // Compiler options: -langversion:future
5 interface A<T>
9 delegate void B<out T> (A<A<T>> a);