Commit d5525e93 by Jason Merrill

cp-simplify.c (genericize_try_block): Do genericize catch blocks.

        * cp-simplify.c (genericize_try_block): Do genericize catch blocks.

[[Split portion of a mixed commit.]]

From-SVN: r62528.2
parent c58391af
// Test that breaking out of a handler works.
// { dg-do run }
int main ()
{
while (1)
{
try { throw 1; }
catch (...) { break; }
}
}
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