diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.mike/eh14.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.mike/eh14.C | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.mike/eh14.C b/gcc/testsuite/g++.old-deja/g++.mike/eh14.C new file mode 100644 index 000000000..2e788fa36 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.mike/eh14.C @@ -0,0 +1,25 @@ +// { dg-do run { xfail sparc64-*-elf arm-*-pe } } +// { dg-options "-fexceptions" } + +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; + } +} |