blob: 351fc4f60a852fd2475ec53f8680bad64c0b1882 [file] [log] [blame]
// Special g++ Options: -fexceptions
// excess errors test - XFAIL a29k-*-* sparc64-*-elf sh-*-* arm-*-pe**-*
#include <exception>
using std::uncaught_exception;
class A {
public:
~A() {
if (uncaught_exception ())
exit (0);
}
};
int main() {
if (uncaught_exception ())
return 1;
try {
throw "";
} catch (...) {
if (uncaught_exception ())
return 1;
}
if (uncaught_exception ())
return 1;
try {
A a;
throw "";
} catch (...) {
return 1;
}
return 1;
}