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-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1510-2.cs
blob
99b7deb1d3361cbe4b4e8395f40a7c6b6b9d91c3
1
// cs1510-2.cs: 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
}