blob: 410a735e8ce74cf5a550cc2154d5911a310de6fa [file] [log] [blame]
int foo()
{
try
{
foo(bar);
}
catch (int *e)
{
return 0;
}
if (false)
try
{
throw int();
}
catch(...)
{
}
if (a) { return 1; } else { return 0; }
return 1;
}