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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs1510-4.cs
blob
d7cc3b061d6c7f10bb77c2c96fbfd64b5347ff25
1
// CS1510: A ref or out argument must be an assignable variable
2
// Line: 13
3
4
class
M
5
{
6
static void
Test
(
ref byte
b
)
7
{
8
}
9
10
public static void
Main
()
11
{
12
byte
b
=
1
;
13
Test
(
ref
(
byte
)
b
);
14
}
15
}