X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fgcs0309-7.cs;fp=mcs%2Ferrors%2Fgcs0309-7.cs;h=0000000000000000000000000000000000000000;hb=0900c61969ca862b0bcc967b4413e539acf07dbb;hp=9dd3a0d59553e94c65c0252b49274a4c001104bc;hpb=46b3c9551cf6ee5ebc6b9ea8efe667f4e96ff0b2;p=mono.git diff --git a/mcs/errors/gcs0309-7.cs b/mcs/errors/gcs0309-7.cs deleted file mode 100644 index 9dd3a0d5955..00000000000 --- a/mcs/errors/gcs0309-7.cs +++ /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' -// Line: 20 - -public interface IA - where K : System.IComparable, System.IComparable -{ -} - -public class A : IA - where K : System.IComparable, System.IComparable -{ -} - -public interface IB - where T : System.IDisposable -{ -} - -public class B : IB - where T : B.Element, new() - where K : System.IComparable, System.IComparable -{ - public abstract class Element : A - { - } -} - - - -