Home | History | Annotate | Download | only in jni
      1 // { dg-do run { xfail sparc64-*-elf arm-*-pe } }
      2 // { dg-options "-fexceptions" }
      3 
      4 int main () {
      5   try {
      6     try {
      7       throw 1;
      8     } catch ( char * ) {
      9     }
     10   } catch ( int ) {
     11     return 0;
     12   }
     13   return 1;
     14 }
     15