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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
gtest-521.cs
blob
b7f6137b9ef7c6be0f2077a0c2d4d8c1ee2aec15
1
using
System
;
2
3
public delegate void
D
(
object
o
);
4
5
public class
E
<
T
>
6
{
7
public class
I
8
{
9
public event
D E
;
10
}
11
12
public static void
Test
()
13
{
14
I i
=
new
I
();
15
i
.
E
+=
new
D
(
EH
);
16
}
17
18
static void
EH
(
object
sender
)
19
{
20
}
21
}
22
23
public class
M
24
{
25
public static void
Main
()
26
{
27
E
<
int
>.
Test
();
28
}
29
}
30