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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
gtest-323.cs
blob
c7563ce00ad9b10f5feafcad0a1caed3731f9e09
1
public class
MyBase
<
K
,
V
>
2
{
3
public class
Callback
4
{ }
5
6
public void
Hello
(
Callback cb
)
7
{ }
8
}
9
10
public class
X
:
MyBase
<
string
,
int
>
11
{
12
public
X
(
Callback cb
)
13
{ }
14
15
public void
Test
(
Callback cb
)
16
{
17
Hello
(
cb
);
18
}
19
20
public static void
Main
()
21
{ }
22
}