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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0177-9.cs
blob
91dde9c8a74bb49288c0467756d83be171a13f2e
1
// CS0177: The out parameter `output' must be assigned to before control leaves the current method
2
// Line: 10
3
4
class
Test
5
{
6
delegate
T Creator
<
T
> ();
7
8
static bool
TryAction
<
T
> (
Creator
<
T
>
creator
,
out
T output
)
where T
:
struct
9
{
10
return false
;
11
}
12
}