[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[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 }