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-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs1642.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
}