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

int count;

class A {
public:
  A() {
//    printf("ctor %x\n", (int)this);
    if (count==3)
      throw 1;
    ++count;
    }
  ~A() {
    --count;
//    printf("dtor %x\n", (int)this);
  }
};

main() {
  try {
    A a[5];
  } catch (...) {
    return count;
  }
  return 1;
}