New tests, updates
[mono.git] / mcs / errors / gcs8034-9.cs
diff --git a/mcs/errors/gcs8034-9.cs b/mcs/errors/gcs8034-9.cs
deleted file mode 100644 (file)
index ef265e1..0000000
+++ /dev/null
@@ -1,9 +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<T>
-{
-}
-
-delegate void B<in T> (A<T> a);