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

void main1() {
  throw 1;
}

int main() {
  try {
    main1();
  } catch (...) {
    return 0;
  }
  return 1;
}