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-03-11 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
gtest-324.cs
blob
c077524cb31503df8a807b560e8d42f180914e9f
1
public delegate void
A
();
2
3
class
B
4
{
5
public static event
A D
;
6
long
[]
d
=
new long
[
1
];
7
8
void
C
()
9
{
10
int
a
=
0
;
11
int
b
=
0
;
12
13
A block
=
delegate
{
14
long
c
=
0
;
15
16
B
.
D
+=
delegate
{
17
d
[
b
] =
c
;
18
F
(
c
);
19
};
20
};
21
}
22
23
public void
F
(
long
i
)
24
{
25
}
26
27
static void
Main
()
28
{
29
}
30
}