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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0139-5.cs
blob
8cafa0a352e50b7bf0e6b37181cd24c5fe18f57c
1
// CS0139: 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
continue
;
9
}
finally
{
10
throw new
System
.
Exception
();
11
}
12
}
13
}