rt_gccstream/gcc/testsuite/g++.dg/eh/loop2.C

12 lines
156 B
C

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