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