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
add comment
[mcs.git]
/
tests
/
test-651.cs
blob
f7eff01c81ccab8eb15df561e1a196f55ef0c0e9
1
using
System
.
Collections
;
2
3
class
Foo
4
{
5
void
Open
(
IList a
)
6
{
7
}
8
9
void
Open
(
out
ArrayList a
)
10
{
11
a
=
null
;
12
Open
((
IList
)
a
);
13
Open
(
a
);
14
}
15
16
public static void
Main
()
17
{
18
}
19
}