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-287.cs
blob
5a84c95bc51f9696279b960844b0cb7a2f9e023d
1
using
System
;
2
using
System
.
Collections
.
Generic
;
3
4
interface
I
{
5
void
D
();
6
}
7
8
class
X
:
I
9
{
10
public static void
Main
()
11
{
12
List
<
object
>
l
=
new
List
<
object
> ();
13
List
<
I
>
i
=
new
List
<
I
> ();
14
15
i
.
Add
(
new
X
());
16
17
l
.
AddRange
(
i
.
ToArray
());
18
}
19
20
public void
D
() {}
21
}
22