]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.mike/eh36.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / eh36.C
diff --git a/gcc/testsuite/g++.old-deja/g++.mike/eh36.C b/gcc/testsuite/g++.old-deja/g++.mike/eh36.C
deleted file mode 100644 (file)
index 6a383a5..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-// Special g++ Options: -fexceptions
-// excess errors test - XFAIL a29k-*-* sparc64-*-elf arm-*-pe
-
-#include <typeinfo>
-
-class A {
-  int space;
-};
-class B {
-public:
-  int data;
-  B(int i) : data(i) {
-  }
-};
-class D : public A, public B {
-public:
-  D(int i) : B(i) {
-  }
-} d(42);
-
-main() {
-  try {
-    throw &d;
-  } catch (B* b) {
-    if (b->data == 42)
-      return 0;
-  }
-  return 1;
-}