blob: d7c509ecd372f7a22836ce79bc7da0bc8bb7f02f [file] [log] [blame]
// Special g++ Options: -fexceptions
// excess errors test - XFAIL hppa*-*-* a29k-*-* sparc64-*-elf z8k-*-* arm-*-pe
#include <exception>
void my_unexpected() {
throw 42;
}
void foo() throw (int) { throw "Hi"; }
int main() {
std::set_unexpected (my_unexpected);
try {
foo();
} catch (int i) {
if (i == 42)
return 0;
}
return 1;
}