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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
gtest-080.cs
blob
0961d2418ed60974b9db1283531d4ddde1ce88ae
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
public static void
Main
()
18
{ }
19
}