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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
tests
/
test-anon-43.cs
blob
30fc229eea6f675a57da156e3492299cc58bad36
1
using
System
;
2
3
delegate void
Simple
();
4
5
delegate
Simple
Foo
();
6
7
class
X
8
{
9
public void
Hello
(
long
i
,
long
j
)
10
{ }
11
12
public void
Test
(
int
i
)
13
{
14
long
j
=
1
<<
i
;
15
Hello
(
i
,
j
);
16
Foo foo
=
delegate
{
17
long
k
=
5
*
j
;
18
Hello
(
j
,
k
);
19
return delegate
{
20
Hello
(
j
,
k
);
21
};
22
};
23
}
24
25
static void
Main
()
26
{
27
X x
=
new
X
();
28
x
.
Test
(
3
);
29
}
30
}