summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/eh6.C
blob: cc29ea59579bd441cd3cf59f04ea075541c1c166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }

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

void main1() {
  throw 1;
}


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