repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cosmetic
[mcs.git]
/
tests
/
test-503.cs
blob
e94e764a3489bb361402953db5164ab1caf58b46
1
// Compiler options: -warnaserror
2
3
class
Foo
{
4
static int
Main
()
5
{
6
for
(;;) {
7
try
{
8
break
;
9
}
catch
{
10
continue
;
11
}
12
}
13
return
0
;
14
}
15
}