]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.mike/eh14.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / eh14.C
diff --git a/gcc/testsuite/g++.old-deja/g++.mike/eh14.C b/gcc/testsuite/g++.old-deja/g++.mike/eh14.C
deleted file mode 100644 (file)
index 6f087cf..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// Special g++ Options: -fexceptions
-// excess errors test - XFAIL a29k-*-* sparc64-*-elf arm-*-pe
-
-class arghh {
-public:
-  int n;
-  arghh (int v) { n = v; }
-};
-
-int main () {
-  try {
-    throw arghh (11);
-  }
-  catch (arghh& a) {
-    if (a.n != 11)
-      return 1;
-  }
-  try {
-    throw arghh (22);
-  }
-  catch (arghh& a) {
-    if (a.n != 22)
-      return 2;
-  }
-}