Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / eh / loop2.C
blob1e85fa1af22b60045e37f8a2d16554381f6a80b9
1 // Test that breaking out of a handler works.
2 // { dg-do run }
4 int main ()
6   while (1)
7     {
8       try { throw 1; }
9       catch (...) { break; }
10     }