blob: 018b09b046572ca9f58de1aa0976d1d635a8deb3 [file] [log] [blame]
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf arm-*-pe
// 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;
}