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
2008-09-29 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
gtest-309.cs
blob
34aec07b0cfd63069edf5071fb357127d5894283
1
class
Test
<
A
,
B
>
2
{
3
public void
Foo
<
V
,
W
> (
Test
<
A
,
W
>
x
,
Test
<
V
,
B
>
y
)
4
{ }
5
}
6
7
class
X
8
{
9
static void
Main
()
10
{
11
Test
<
float
,
int
>
test
=
new
Test
<
float
,
int
> ();
12
test
.
Foo
(
test
,
test
);
13
}
14
}