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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
tests
/
dtest-named-01.cs
blob
8a1e5dfc1b3aff30ca5b3a93e60c1cce7c22c795
1
public class
Test
2
{
3
public void
Foo
(
out int
arg
)
4
{
5
arg
=
5
;
6
}
7
8
public static int
Main
()
9
{
10
dynamic
d
=
new
Test
();
11
int
x
;
12
d
.
Foo
(
arg
:
out
x
);
13
if
(
x
!=
5
)
14
return
1
;
15
16
return
0
;
17
}
18
}