2009-04-28 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git] / errors / gcs8035-6.cs
blobf1fdbeb17c4b5896c225a730afd66c315473efe4
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<A<T>> a);