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
use a 2.0 network stack for MONOTOUCH
[mcs.git]
/
errors
/
cs1620.cs
blob
56e7081fb6b27677f920d2ed533b51e994542287
1
// CS1620: Argument `#1' is missing `out' modifier
2
// Line: 13
3
4
class
C
5
{
6
public static void
test
(
out int
i
)
7
{
8
i
=
5
;
9
}
10
11
public static void
Main
() {
12
int
i
=
1
;
13
test
(
ref
i
);
14
}
15
}