New tests, updates
[mono.git] / mcs / errors / gcs8035-6.cs
diff --git a/mcs/errors/gcs8035-6.cs b/mcs/errors/gcs8035-6.cs
deleted file mode 100644 (file)
index f1fdbeb..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-// CS8035: Covariant type parameters can only be used as type arguments in covariant positions\r
-// Line: 11\r
-// Compiler options: -langversion:future
-
-interface A<T>
-{
-}
-
-interface B<out T>
-{
-       void C(A<A<T>> a);
-}