]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.mike/eh40.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / eh40.C
diff --git a/gcc/testsuite/g++.old-deja/g++.mike/eh40.C b/gcc/testsuite/g++.old-deja/g++.mike/eh40.C
deleted file mode 100644 (file)
index 10a3525..0000000
+++ /dev/null
@@ -1,29 +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() try : B() {
-    fail = 1;
-  } catch (char c) {
-    fail = 1;
-    throw;
-  } catch (...) {
-    fail = 0;
-    throw;
-  }
-};
-
-main() {
-  try {
-    D d;
-    fail = 1;
-  } catch (...) {
-  }
-  return fail;
-}