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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-anon-130.cs
blob
449b8f7d92ee2e0171213346755970567368f230
1
using
System
;
2
public delegate void
Simple
();
3
4
public delegate
Simple
Foo
();
5
6
class
X
7
{
8
public void
Hello
<
U
> (
U u
)
9
{
10
}
11
12
public void
Test
<
T
> (
T t
)
13
{
14
{
15
T u
=
t
;
16
Hello
(
u
);
17
Foo foo
=
delegate
{
18
T v
=
u
;
19
Hello
(
u
);
20
return delegate
{
21
Hello
(
u
);
22
Hello
(
v
);
23
};
24
};
25
}
26
}
27
28
public static void
Main
()
29
{
30
}
31
}