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
2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0662.cs
blob
f819b95abaf7945ed0fb0c7100a9ccf16bcbee25
1
// cs0662.cs: 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
}