blob: 76cb22735a71b85a6604ee30e72e7ff3f1ae05ec [file] [log] [blame]
#include <exception>
void
throws_int ()
{
throw 5;
}
int
main ()
{
throws_int();
}