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
/
cs0157.cs
blob
eef17a84c1ceefc4bba52dd8dc8399209908a291
1
// CS0157: Control cannot leave the body of a finally clause
2
// Line: 9
3
4
class
X
{
5
void
A
()
6
{
7
try
{
8
}
finally
{
9
return
;
10
}
11
}
12
}