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-09-02 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0139-4.cs
blob
75491f5d2bbb62001c9da8c5871094109985c816
1
// cs0139-4.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
break
;
10
}
finally
{
11
throw new
System
.
Exception
();
12
}
13
}
14
}