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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
gcs1666.cs
blob
140777e109dd9303894ee3f1e38a2e74c93f3bd3
1
// cs1666.cs: You cannot use fixed size buffers contained in unfixed expressions. Try using the fixed statement
2
// Line: 11
3
// Compiler options: -unsafe
4
5
public unsafe struct
S
6
{
7
fixed char
test_1
[
128
];
8
9
public void
Test
()
10
{
11
test_1
[
55
] =
'g'
;
12
}
13
}