8sa1-gcc/gcc/testsuite/g++.old-deja/g++.eh/spec1.C
Jason Merrill e03a602a7d tests
From-SVN: r16629
1997-11-20 23:05:13 -05:00

39 lines
496 B
C

// 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, bad_exception)
{
throw 'a';
}
main ()
{
set_terminate (my_term);
set_unexpected (my_unexp);
try
{
f ();
}
catch (char)
{
return 0;
}
catch (int)
{
return 3;
}
catch (bad_exception)
{
return 4;
}
return 5;
}