2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs8035-8.cs
blob12d8219c5861c2577c6d5aaa13acf497fe5039cc
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 A<A<T>> B<out T> ();