summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p7912.C
blob: e5584ec4cd9196bf079b425fb802872989af7904 (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" }
// prms-id: 7912

int count = 0;

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


main()
{
  try {
    throw Foo();
  }
  catch (Foo object) {
  }
  return count;
}