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