repo.or.cz
/
mono-project
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-10 Jeffrey Stedfast <fejj@novell.com>
[mono-project/dkf.git]
/
mcs
/
tests
/
gtest-anon-11.cs
blob
6bd016b19941a412e2b2dd0920f4a94cbc4e1022
1
using
System
;
2
3
public delegate void
Foo
();
4
5
public class
Test
<
R
>
6
{
7
public void
World
<
S
,
T
> (
S s
,
T t
)
8
where S
:
X
9
where T
:
S
10
{ }
11
12
public void
Hello
<
U
,
V
> (
U u
,
V v
)
13
where U
:
X
14
where V
:
U
15
{
16
Foo foo
=
delegate
{
17
World
(
u
,
v
);
18
};
19
}
20
}
21
22
public class
X
23
{
24
public static void
Main
()
25
{
26
X x
=
new
X
();
27
Test
<
int
>
test
=
new
Test
<
int
> ();
28
test
.
Hello
(
x
,
x
);
29
}
30
}