2009-02-15 Jonathan Chambers <joncham@gmail.com>
[mcs.git] / errors / gcs8035-7.cs
blobc8436453903327c48e18abe36a31370e42100f96
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<T> B<out T> ();