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