C++程序  |  12行  |  156 B

// Test that breaking out of a handler works.
// { dg-do run }

int main ()
{
  while (1)
    {
      try { throw 1; }
      catch (...) { break; }
    }
}