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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0213-2.cs
blob
ae72e4cd9aaf4c3eab63c12204f1a573e216537d
1
// CS0213: You cannot use the fixed statement to take the address of an already fixed expression
2
// Line: 9
3
// Compiler options: -unsafe
4
5
unsafe struct
S
6
{
7
public void
Test
()
8
{
9
fixed
(
S
*
i
=
null
) {
10
}
11
}
12
}