Flush (work in progress)
[mono.git] / mcs / errors / gcs0309-2.cs
diff --git a/mcs/errors/gcs0309-2.cs b/mcs/errors/gcs0309-2.cs
deleted file mode 100644 (file)
index 0b93cd4..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-// CS0309: The type 'B' must be convertible to 'I' in order to use it as
-//         parameter 'T' in the generic type or method 'Foo<T>'
-// Line: 21
-
-public class Foo<T>
-       where T : A, I
-{
-}
-
-public interface I
-{ }
-
-public class A
-{ }
-
-public class B : A
-{ }
-
-class X
-{
-       Foo<B> foo;
-
-       static void Main ()
-       {
-       }
-}