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
This commit is contained in:
Jason Merrill 2003-02-07 13:14:56 -05:00
parent c58391af7b
commit d5525e93c0

View File

@ -0,0 +1,11 @@
// Test that breaking out of a handler works.
// { dg-do run }
int main ()
{
while (1)
{
try { throw 1; }
catch (...) { break; }
}
}