New tests, updates
[mono.git] / mcs / errors / gcs8038.cs
diff --git a/mcs/errors/gcs8038.cs b/mcs/errors/gcs8038.cs
deleted file mode 100644 (file)
index 511595d..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-// CS8038: Covariant type parameters cannot be used as method parameters\r
-// Line: 7\r
-// Compiler options: -langversion:future
-
-interface A<out T>
-{
-       void B(T t);
-}