repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0139-6.cs
blob
609a3f8abb25132a256543c9d9a87cfc650ff389
1
// CS0139: 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
}