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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs0214-15.cs
blob
462ca7a647182600d44ced6746b9b9e90bd7b7ee
1
// CS0214: Pointers and fixed size buffers may only be used in an unsafe context
2
// Line: 9
3
// Compiler options: -unsafe
4
5
public class
aClass
6
{
7
public struct
foo_t
8
{
9
public fixed char
b
[
16
];
10
}
11
}