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
update readme (#21797)
[mono-project.git]
/
mcs
/
errors
/
cs0177-10.cs
blob
000f8032e123cf44f36f06f66483b4e83ecd2078
1
// CS0177: The out parameter `output' must be assigned to before control leaves the current method
2
// Line: 8
3
4
class
Test
5
{
6
static bool
TryAction
<
T
> (
out
T output
)
7
{
8
return false
;
9
}
10
11
static void
Main
()
12
{
13
Test
value
;
14
TryAction
<
Test
> (
out value
);
15
}
16
}