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