Flush (work in progress)
[mono.git] / mcs / errors / gcs0309-4.cs
diff --git a/mcs/errors/gcs0309-4.cs b/mcs/errors/gcs0309-4.cs
deleted file mode 100644 (file)
index 6606028..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
- // gcs0309.cs: The type `U' must be convertible to `System.IComparable' in order to use it as parameter `T' in the generic type or method `A<T>'
-// Line: 13
-
-using System;
-
-class A<T>
-       where T: IComparable
-{
-}
-
-class B<U,V>
-       where V: A<U>
-{
-}
-
-class Driver
-{
-       public static void Main ()
-       {
-       }
-}