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
/
cs0177-3.cs
blob
262dbdcd86e67105df2e4840167b4f947c84428d
1
// cs0177-3.cs: The out parameter `f' must be assigned to before control leaves the current method
2
// Line: 5
3
4
class
C
{
5
public static void
test3
(
out float
f
)
6
{
7
try
{
8
f
=
8.53
F
;
9
}
catch
{
10
return
;
11
}
12
}
13
}
14