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 #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs0177-3.cs
blob
a51d989f98dd3682300c012939c81be7455e20c3
1
// CS0177: 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