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
cosmetic
[mcs.git]
/
tests
/
gtest-425.cs
blob
2f7ac062bc3d2f673e97b57624e5b724b9af0a1b
1
using
System
;
2
3
public class
EventClass
<
T
>
4
{
5
public delegate void
HookDelegate
(
T del
);
6
}
7
8
public class
Test
9
{
10
public static void
Main
()
11
{
12
Console
.
WriteLine
(
typeof
(
EventClass
<>.
HookDelegate
));
13
}
14
}