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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs0177-2.cs
blob
9c5eca2933185ff5d1f2e2172691b462e4b6ca31
1
// CS0177: The out parameter `f' must be assigned to before control leaves the current method
2
// Line: 5
3
4
class
ClassMain
{
5
public static void
test2
(
int
a
,
out float
f
)
6
{
7
// CS0177
8
if
(
a
==
5
)
9
return
;
10
11
f
=
8.53
F
;
12
}
13
}
14