blob: 462ca7a647182600d44ced6746b9b9e90bd7b7ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS0214: Pointers and fixed size buffers may only be used in an unsafe context
// Line: 9
// Compiler options: -unsafe
public class aClass
{
public struct foo_t
{
public fixed char b[16];
}
}
|