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
[build] Fix warning (#4177)
[mono-project.git]
/
mcs
/
tests
/
gtest-170.cs
blob
5a3f714e01605d69dd88f5e503a9e33176c02051
1
class
C
<
A
> {
2
public static void
foo
<
B
> (
C
<
B
>
x
)
3
{
4
D
.
append
(
x
);
5
}
6
}
7
8
class
D
{
9
public static void
append
<
A
> (
C
<
A
>
x
)
10
{
11
}
12
13
public static void
Main
()
14
{
15
C
<
object
>.
foo
<
int
> (
null
);
16
}
17
}