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
Merge pull request #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
tests
/
gtest-322.cs
blob
29e0f47bfef9122e756caa1fb3a06e0ad3b02898
1
public class
MyBase
<
K
,
V
>
2
{
3
public delegate void
Callback
(
K key
,
V
value
);
4
5
public
MyBase
(
Callback insertionCallback
)
6
{ }
7
}
8
9
public class
X
:
MyBase
<
string
,
int
>
10
{
11
public
X
(
Callback cb
)
12
:
base
(
cb
)
13
{ }
14
15
public static void
Main
()
16
{ }
17
}