Commit d0029fc5 by Jason Merrill

new

From-SVN: r41652
parent ad34a822
// Test that inlining a destructor with a catch block doesn't confuse the
// enclosing try block.
// Special g++ Options: -O
struct A {
~A()
{
try { throw 1; }
catch (...) { }
}
};
int main ()
{
try
{
A a;
throw 42;
}
catch (int i)
{
return (i != 42);
}
}
// Test that an unhandled exception causes us to call terminate.
#include <exception>
#include <cstdlib>
void my_terminate ()
{
std::exit (0);
}
int main (void)
{
std::set_terminate (my_terminate);
throw 1;
return 1;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment