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
remove NotWorking
[mcs.git]
/
tests
/
test-anon-46.cs
blob
283fd126a675b203184acb5f43df5236be6f5246
1
using
System
;
2
3
public delegate void
Foo
();
4
5
public class
World
6
{
7
public void
Hello
(
long
a
)
8
{ }
9
10
public void
Test
(
int
t
)
11
{
12
Hello
(
t
);
13
int
u
=
2
*
t
;
14
Foo foo
=
delegate
{
15
Hello
(
u
);
16
};
17
foo
();
18
}
19
}
20
21
class
X
22
{
23
static void
Main
()
24
{
25
World world
=
new
World
();
26
world
.
Test
(
5
);
27
}
28
}