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