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
2010-06-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs1615-2.cs
blob
f40951d03c6a89b2b07c613d47e042340d392af2
1
// CS1615: Argument `#2' does not require `out' modifier. Consider removing `out' modifier
2
// Line: 13
3
4
public class
X
5
{
6
public static void
Test
(
params int
[]
a
)
7
{
8
}
9
10
public static void
Main
()
11
{
12
int
i
;
13
Test
(
1
,
out
i
);
14
}
15
}