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
/
cs0212.cs
blob
a980e520c5d4ed2927dfe20a0bb3e8c8654ef1e3
1
// cs0212.cs: You can only take the address of unfixed expression inside of a fixed statement initializer
2
// Line: 19
3
// Compiler options: -unsafe
4
5
using
System
;
6
7
class
X
8
{
9
public int
x
;
10
public
X
()
11
{
12
this
.
x
=
4
;
13
}
14
15
public unsafe static void
Main
()
16
{
17
X x
=
new
X
();
18
int
*
p
= &
x
.
x
;
19
}
20
}