2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / eh53.C
blob5f2ff57ac7a2b93d2bcfaf968c879b2fc814c7cf
1 // { dg-do run { xfail sparc64-*-elf arm-*-pe } }
2 // { dg-options "-fexceptions -g" }
4 class zeroset {
5 public:
6   ~zeroset () { }
7 };
9 int main () {
10   zeroset a;
11   try {
12     ;
13   } catch( zeroset ) {
14   }