blob: e8f87f1bc42980ae76790886da754dffd8739b9a [file] [log] [blame]
// { dg-options "-std=c++98" }
#include <exception>
struct One { };
struct Two { };
extern "C" void abort ();
extern void doit (void) throw (Two);
extern void handle_unexpected (void);
void
unexpected1_x ()
{
std::set_unexpected (handle_unexpected);
try
{
doit ();
}
catch (Two &)
{
}
catch (...)
{
abort ();
}
}