Flush (work in progress)
[mono.git] / mcs / errors / gcs0309-7.cs
diff --git a/mcs/errors/gcs0309-7.cs b/mcs/errors/gcs0309-7.cs
deleted file mode 100644 (file)
index 9dd3a0d..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-// CS0309: The type `T' must be convertible to `System.IDisposable' in order to use it as parameter `T' in the generic type or method `IB<K,T>'
-// Line: 20
-
-public interface IA<K> 
-       where K : System.IComparable, System.IComparable<K>
-{
-}
-
-public class A<K> : IA<K> 
-       where K : System.IComparable, System.IComparable<K>
-{
-}
-
-public interface IB<K,T> 
-       where T : System.IDisposable
-{
-} 
-
-public class B<K,T> : IB<K,T> 
-       where T : B<K,T>.Element, new() 
-       where K : System.IComparable, System.IComparable<K>
-{
-       public abstract class Element : A<K>
-       {
-       }
-}
-
-
-
-