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
* TaskLoggingHelper.cs (LogErrorFromException): Add missing overload.
[mcs.git]
/
tests
/
gtest-323.cs
blob
a8b1b8bb50d96764226bc37e0c37098f0c9605d8
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
static void
Main
()
21
{ }
22
}