Flush (work in progress)
[mono.git] / mcs / errors / gcs0309-6.cs
diff --git a/mcs/errors/gcs0309-6.cs b/mcs/errors/gcs0309-6.cs
deleted file mode 100644 (file)
index 2b93258..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-// CS0309: The type `B<int>' must be convertible to `D<B<int>>' in order to use it as parameter `X' in the generic type or method `C<X>'
-// Line: 3
-class A : C<B<int>> {}
-class B<X> {}
-interface C<X> where X : D<X> {}
-interface D<X> {}