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
2010-04-13 Sebastien Pouliot <sebastien@ximian.com>
[mono-project.git]
/
mcs
/
tests
/
gtest-080.cs
blob
57931e1bb9566457374f6ac4c0ccb8a767c57095
1
public interface
IFoo
<
X
>
2
{ }
3
4
public class
Test
5
{
6
public void
Hello
<
T
> (
IFoo
<
T
>
foo
)
7
{
8
InsertAll
(
foo
);
9
}
10
11
public void
InsertAll
<
U
> (
IFoo
<
U
>
foo
)
12
{ }
13
}
14
15
class
X
16
{
17
static void
Main
()
18
{ }
19
}