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

int e = 1;

struct A {
  ~A() {
    --e;
  }
};

struct B : public A {
  B() {
    throw 1;
  }
};

main() {
  try {
    B b;
  } catch (...) {
    return e;
  }
  return 1;
}