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
2007-03-09 Chris Toshok <toshok@ximian.com>
[mcs.git]
/
errors
/
cs0139-8.cs
blob
d89b48050519cefb1ad95e208e31c733081fbc15
1
// cs0139-7.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
finally
{
9
break
;
10
}
11
}
12
}
13