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
[interp] Reduce computation under calc_section mutex
[mono-project.git]
/
mcs
/
tests
/
gtest-281.cs
blob
e1599e8e0ba7cbd7d141e94e72551f1ff12bbb81
1
using
System
;
2
using
System
.
Collections
.
Generic
;
3
4
public class
List
{
5
internal void
AddRange
<
T
>(
ICollection
<
T
>
otherList
) {
6
}
7
}
8
9
public class
Tests
10
{
11
public static void
Main
()
12
{
13
object
[]
args
=
new object
[
0
];
14
List l
=
new
List
();
15
l
.
AddRange
(
args
);
16
}
17
}