summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/eh10.C
blob: 2541f2799c7e8e736f9c5e577b4d9891779294ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*

void foo() {
  int i;
  i = 42;
  throw i;
}

void ee(int *);

void bar() {
  int i = 2;
  ee(&i);
}

void ee(int *) { }

main() {
  try {
    foo();
    return 3;
  } catch (int& i) {
    bar();
    return i != 42;
  }
  return 2;
}