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
2009-09-02 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1510.cs
blob
5d8b0e7b8f22ea579c351c3ce772add791e3b560
1
// cs1510.cs: 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
}