X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.dg%2Fother%2Fenum1.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.dg%2Fother%2Fenum1.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=def0b59fdfb9368cb3451917d35c17855d270d6c;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.dg/other/enum1.C b/gcc/testsuite/g++.dg/other/enum1.C deleted file mode 100644 index def0b59f..00000000 --- a/gcc/testsuite/g++.dg/other/enum1.C +++ /dev/null @@ -1,19 +0,0 @@ -/* PR c++/6037 - This testcase ICEd because start_enum expected pushtag to insert - the tag always into current binding level. */ - -struct A -{ - ~A () { } -}; - -struct B -{ - void foo () - { - switch (0) { default: ; } - A a; - enum C { }; - (void) a; - } -};