X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ftests%2Fgen-42.cs;fp=mcs%2Ftests%2Fgen-42.cs;h=0000000000000000000000000000000000000000;hb=b0eff411fcc55fa6a7bbc5ee97bb592fe3204309;hp=7862bacd3d8b51527efe2a6a70a7d3b4693426c1;hpb=a601c51d5f453e2270af1c80e23b7e78be6993cd;p=mono.git diff --git a/mcs/tests/gen-42.cs b/mcs/tests/gen-42.cs deleted file mode 100644 index 7862bacd3d8..00000000000 --- a/mcs/tests/gen-42.cs +++ /dev/null @@ -1,62 +0,0 @@ -// Compare this to gcs0695-*.cs: these are the allowed cases. - -namespace A -{ - interface I - { } - - interface J : I - { } - - class A : I, I> - { } - - class B : I>, I, I> - { } - - class C : I, I> - { } - - class D : I>, I> - { } - - class E : J, J,I> - { } - - class F : J>, J - { } -} - -// bug #69057 -namespace B -{ - struct KeyValuePair - { } - - interface ITest - { } - - interface ITest2 : ITest> - { } - - class MyTest : ITest2, ITest> - { } -} - -// bug #58303 -namespace C -{ - class S { } - - interface Z { } - - interface I : Z> { } - - class C : I, Z> { } -} - -class Test -{ - static void Main () - { } -}