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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs1615.cs
blob
1fe406da20061599e83505543a460dc120c6323d
1
// CS1615: Argument `#1' does not require `ref' modifier. Consider removing `ref' modifier
2
// Line: 11
3
4
class
C
5
{
6
public static void
test
(
int
i
) {}
7
8
public static void
Main
()
9
{
10
int
i
=
1
;
11
test
(
ref
i
);
12
}
13
}