aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/eh14.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.mike/eh14.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.mike/eh14.C25
1 files changed, 0 insertions, 25 deletions
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
index e7c321397a2..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.mike/eh14.C
+++ /dev/null
@@ -1,25 +0,0 @@
-// Special g++ Options: -fexceptions
-// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* 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;
- }
-}