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
avoid using a custom sources file for the net_2_1_raw profile
[mcs.git]
/
errors
/
cs0254.cs
blob
1f09a5503211e7a916a7d70c1a71288eea891f5c
1
// cs0254.cs: The right hand side of a fixed statement assignment may not be a cast expression
2
// Line: 16
3
// Compiler options: -unsafe
4
5
class
Box
{
6
public int value
;
7
}
8
9
unsafe struct
Obsolete
{
10
}
11
12
class
MainClass
{
13
unsafe public static void
Main
()
14
{
15
Box b
=
new
Box
();
16
fixed
(
long
*
p
= (
long
*)&
b
.
value
)
17
{
18
}
19
}
20
}