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
[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git]
/
mcs
/
errors
/
cs0177-12.cs
blob
4ee34ddbac2097a6e817043d99ab8c555d9c88de
1
// CS0177: The out parameter `arg' must be assigned to before control leaves the current method
2
// Line: 12
3
4
class
C
5
{
6
delegate void
D
(
string
s
,
out int
arg
);
7
8
public static void
Main
()
9
{
10
D d
=
delegate
(
string
s
,
out int
arg
)
11
{
12
return
;
13
};
14
}
15
}