X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.mike%2Feh39.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.mike%2Feh39.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=a6520278a165e037874b63f7fd8b3f9de83f46a9;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.mike/eh39.C b/gcc/testsuite/g++.old-deja/g++.mike/eh39.C deleted file mode 100644 index a6520278..00000000 --- a/gcc/testsuite/g++.old-deja/g++.mike/eh39.C +++ /dev/null @@ -1,28 +0,0 @@ -// Special g++ Options: -fexceptions -// excess errors test - XFAIL a29k-*-* sparc64-*-elf arm-*-pe - -int fail = 1; -class B { -public: - B() { throw 1; } -}; -class D : public B { -public: - D(); -}; - -D::D() try : B() { - fail = 1; -} catch (...) { - fail = 0; - throw; -} - -main() { - try { - D d; - fail = 1; - } catch (...) { - } - return fail; -}