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
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
gtest-075.cs
blob
9c7c61b95a121f4a97a217a9ba65457d3349d49c
1
public interface
IExtensible
<
T
>
2
{
3
void
AddAll
<
U
> (
U item
)
4
where U
:
T
;
5
}
6
7
public class
ArrayList
<
T
> :
IExtensible
<
T
>
8
{
9
void
IExtensible
<
T
>.
AddAll
<
U
> (
U item
)
10
{ }
11
}
12
13
class
X
14
{
15
static void
Main
()
16
{ }
17
}