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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs1510.cs
blob
f6af92c1e2c8f87b738267a1e292b118d9cb126d
1
// CS1510: A ref or out argument must be an assignable variable
2
// Line: 11
3
class
X
{
4
public static void
m
(
ref int
i
)
5
{
6
i
++;
7
}
8
9
static void
Main
()
10
{
11
m
(
ref
4
);
12
}
13
}