summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/eh31.C
blob: 150d66b98a67006fd5d72f38836126bf7728955f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }

int count;

class Foo {
public:
  Foo() { ++count; }
  Foo(const Foo&) { ++count; }
  ~Foo() { --count; }
};


main() {
  try {
    throw Foo();
  }
  catch (Foo& object) {
    if (count == 1)
      return 0;
  }
  return 1;
}