blob: 50538df4b8c6c25ca5c563965ed8869c5e0dbc09 [file] [log] [blame]
#include <iostream>
#include <cstdlib>
void
foo()
{
}
int
main()
{
try
{
throw(1);
}
catch(int)
{
std::cout << "caught" << std::endl;
exit(0);
}
std::cout << "failed" << std::endl;
exit(1);
}