Commit 941ac66e by Jason Merrill

new

From-SVN: r17753
parent bf9c83fe
#include <stdio.h>
int bar ()
{
throw 100;
}
main ()
{
int i = 0; // this gets deleted after flow analysis
try
{
i = bar ();
}
catch (...)
{
}
printf ("i = %d\n", i);
return i;
}
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