aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/eh6.C
blob: f5409867a2389c07c83e047797d67e2dce635948 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*

extern "C" int printf(const char *, ...);

main1() {
  throw 1;
}


main() {
  try {
    main1();
  } catch (...) {
    printf("Unwind works!\n");
    return 0;
  }
  return 1;
}