repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-01-24 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
test-anon-68.cs
blob
370449392344b2f329fe5992ace92edaf3c2ab20
1
delegate void
D1
(
int
i
);
2
delegate void
D2
(
out string
s
);
3
4
public class
C
5
{
6
static void
T
(
D1 d
)
7
{
8
}
9
10
static void
T
(
D2 d
)
11
{
12
}
13
14
public static void
Main
()
15
{
16
T
(
delegate
{ }
);
17
T
(
delegate
(
out string
o
)
{ o = "ab"; }
);
18
}
19
}