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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0157-6.cs
blob
ed5f28383576f85df61d596cf869c0ca75a496a2
1
// cs0157-6.cs: Control cannot leave the body of a finally clause
2
// Line: 10
3
4
class
Foo
{
5
static void
Main
()
{ int i; foo (out i); }
6
static void
foo
(
out int
i
)
7
{
8
try
{}
9
finally
{
10
return
;
11
}
12
}
13
}