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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
gtest-075.cs
blob
18f623ed494a25d23817e9f961d135ea99ef75e2
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
public static void
Main
()
16
{ }
17
}