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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0157.cs
blob
645adea33b4c48a9a3044f86435f3ce7e2f53e1a
1
// cs0157.cs: 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
}