New tests, updates
[mono.git] / mcs / errors / gcs8034-2.cs
diff --git a/mcs/errors/gcs8034-2.cs b/mcs/errors/gcs8034-2.cs
deleted file mode 100644 (file)
index cd6be50..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-// CS8034: Contravariant type parameters can only be used as type arguments in contravariant positions
-// Line: 11\r
-// Compiler options: -langversion:future
-
-interface A<T>
-{
-}
-
-interface B<in T>
-{
-       A<A<T>> A { get; }
-}