aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/eh29.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.mike/eh29.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.mike/eh29.C27
1 files changed, 0 insertions, 27 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.mike/eh29.C b/gcc/testsuite/g++.old-deja/g++.mike/eh29.C
deleted file mode 100644
index 58c1f0b3f82..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.mike/eh29.C
+++ /dev/null
@@ -1,27 +0,0 @@
-// Special g++ Options: -fexceptions
-// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
-
-int count;
-
-class A {
-public:
- A() {
-// printf("ctor %x\n", (int)this);
- if (count==3)
- throw 1;
- ++count;
- }
- ~A() {
- --count;
-// printf("dtor %x\n", (int)this);
- }
-};
-
-main() {
- try {
- A a[5];
- } catch (...) {
- return count;
- }
- return 1;
-}