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-267.cs
blob
61947b79a9768ae5a60e09475df93f96c532ea3f
1
using
System
;
2
3
public delegate void
Handler
<
T
> (
T t
);
4
5
public class
T
{
6
public void
Foo
<
T
> (
Handler
<
T
>
handler
) {
7
AsyncCallback d
=
delegate
(
IAsyncResult ar
) {
8
Response
<
T
> (
handler
);
9
};
10
}
11
12
void
Response
<
T
> (
Handler
<
T
>
handler
) {}
13
14
static void
Main
()
15
{ }
16
}
17