X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ftests%2Fgen-86.cs;fp=mcs%2Ftests%2Fgen-86.cs;h=0000000000000000000000000000000000000000;hb=b0eff411fcc55fa6a7bbc5ee97bb592fe3204309;hp=34f094223d4084700a1b63e0a50e2f5bfdff80a5;hpb=a601c51d5f453e2270af1c80e23b7e78be6993cd;p=mono.git diff --git a/mcs/tests/gen-86.cs b/mcs/tests/gen-86.cs deleted file mode 100644 index 34f094223d4..00000000000 --- a/mcs/tests/gen-86.cs +++ /dev/null @@ -1,27 +0,0 @@ -public interface IFoo -{ } - -public class ArrayList -{ - public virtual int InsertAll (IFoo foo) - { - return 0; - } - - public virtual int InsertAll (IFoo foo) - where U : T - { - return 1; - } - - public virtual int AddAll (IFoo foo) - { - return InsertAll (foo); - } -} - -class X -{ - static void Main () - { } -}