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
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
gcs1642.cs
blob
628b948c67d76377e1afcabbe360adef96e8a902
1
// cs1642.cs: `C.test_1': Fixed size buffer fields may only be members of structs
2
// Line: 7
3
// Compiler options: -unsafe
4
5
public unsafe class
C
6
{
7
private fixed char
test_1
[
128
];
8
}