Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.mike / eh21.C
blobac74fa3861476608428ebc323e5976b2043746d9
1 // { dg-do run { xfail sparc64-*-elf arm-*-pe } }
2 // { dg-options "-fexceptions" }
4 int main () {
5   try {
6     try {
7       throw 1;
8     } catch ( char * ) {
9     }
10   } catch ( int ) {
11     return 0;
12   }
13   return 1;