1 // { dg-do run { xfail sparc64-*-elf arm-*-pe } }
2 // { dg-options "-fexceptions -g" }
3 
4 class zeroset {
5 public:
~zeroset()6   ~zeroset () { }
7 };
8 
main()9 int main () {
10   zeroset a;
11   try {
12     ;
13   } catch( zeroset ) {
14   }
15 }
16