repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
eh
/
loop2.C
blob
1e85fa1af22b60045e37f8a2d16554381f6a80b9
1
// Test that breaking out of a handler works.
2
// { dg-do run }
3
4
int main ()
5
{
6
while (1)
7
{
8
try { throw 1; }
9
catch (...) { break; }
10
}
11
}