blob: 0ff888369f293bff2b254c34b548c8afb2cd6266 [file] [log] [blame]
// { dg-do run }
// Testing exception specifications.
// Test 1: the original exception succeeds.
#include <stdlib.h>
#include <exception>
void my_term () { exit (1); }
void my_unexp () { throw 42; }
void
f () throw (char, int, std::bad_exception)
{
throw 'a';
}
int main ()
{
std::set_terminate (my_term);
std::set_unexpected (my_unexp);
try
{
f ();
}
catch (char)
{
return 0;
}
catch (int)
{
return 3;
}
catch (std::bad_exception)
{
return 4;
}
return 5;
}