2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / eh49.C
blob1380ca02d82d783a03aeb2263b8116f2510c0037
1 // { dg-do run { xfail sparc64-*-elf arm-*-pe } }
2 // { dg-options "-fexceptions -O9" }
4 void main1() {
5   throw 1;
8 int main() {
9   try {
10     main1();
11   } catch (...) {
12     return 0;
13   }
14   return 1;