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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1510-2.cs
blob
4462748b305aa5123a053ce5106864fe9f13eff8
1
// CS1510: A ref or out argument must be an assignable variable
2
// Line: 14
3
// this is bug #56016
4
5
using
System
;
6
7
class
Test
{
8
static void
test
(
ref
IConvertible i
) {
9
}
10
11
static void
Main
() {
12
int
i
=
1
;
13
14
test
(
ref
(
IConvertible
)
i
);
15
}
16
}