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
2009-03-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0139-6.cs
blob
c5e1e6061705d33b872dca20908a89c203bacf2d
1
// cs0139-6.cs: No enclosing loop out of which to break or continue
2
// Line: 9
3
4
class
Foo
{
5
static void
Main
()
6
{
7
try
{
8
}
catch
{
9
continue
;
10
}
finally
{
11
throw new
System
.
Exception
();
12
}
13
}
14
}