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