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
/
cs0662.cs
blob
b33a9f7c2bfd3aab575678419e8df5d4b363af29
1
// CS0662: Cannot specify only `Out' attribute on a ref parameter. Use both `In' and `Out' attributes or neither
2
// Line: 8
3
4
using
System
.
Runtime
.
InteropServices
;
5
6
class
C
7
{
8
void
Test
(
int
i1
, [
Out
,
Int
]
ref int
i2
) {}
9
}