[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs1642.cs
1 // CS1642: `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 }