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-112.cs
blob
99c67adcd9b88b6ba7949ae7dd75cf3807097813
1
using
System
;
2
3
public delegate void
Foo
();
4
5
public class
World
<
T
>
6
{
7
public void
Hello
<
U
> (
U u
)
8
{ }
9
10
public void
Test
(
T t
)
11
{
12
Hello
(
t
);
13
Foo foo
=
delegate
{
14
Hello
(
t
);
15
};
16
}
17
}
18
19
class
X
20
{
21
public static void
Main
()
22
{
23
World
<
X
>
world
=
new
World
<
X
> ();
24
world
.
Test
(
new
X
());
25
}
26
}