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
In class/Microsoft.Build.Tasks/Microsoft.Build.Tasks:
[mcs.git]
/
tests
/
gtest-anon-6.cs
blob
9fc04683460a93546531aa0cc56dfb29c8780161
1
using
System
;
2
3
delegate void
Foo
<
R
,
S
> (
R r
,
S s
);
4
5
class
X
6
{
7
public void
Hello
<
U
,
V
> (
U u
,
V v
)
8
{ }
9
10
public void
Test
<
A
,
B
,
C
> (
A a
,
B b
,
C c
)
11
{
12
Hello
(
a
,
b
);
13
C d
=
c
;
14
Foo
<
A
,
int
>
foo
=
delegate
(
A i
,
int
j
) {
15
Hello
(
i
,
c
);
16
Hello
(
i
,
j
);
17
};
18
}
19
20
static void
Main
()
21
{
22
X x
=
new
X
();
23
x
.
Test
(
3
,
Math
.
PI
,
1
<<
8
);
24
}
25
}