summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/eh39.C
blob: e4bfff8d17ad0cada84d1df88ce5e27dd8bbc03c (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
// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }

int fail = 1;
class B {
public:
  B() { throw 1; }
};
class D : public B {
public:
  D();
};

D::D() try : B() {
  fail = 1;
} catch (...) {
  fail = 0;
  throw;
}

main() {
  try {
    D d;
    fail = 1;
  } catch (...) {
  }
  return fail;
}