2009-03-04 Astushi Enomoto <atsushi@ximian.com>
[mcs.git] / errors / gcs8034-2.cs
blobcd6be504c7b992c699d99d4a9bad2ae3a4917f75
1 // CS8034: Contravariant type parameters can only be used as type arguments in contravariant positions
2 // Line: 11
3 // Compiler options: -langversion:future
5 interface A<T>
9 interface B<in T>
11 A<A<T>> A { get; }