[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1665.cs
1 // CS1665: `S.test20': Fixed size buffers must have a length greater than zero
2 // Line: 7
3 // Compiler options: -unsafe
4
5 public unsafe struct S
6 {
7     public fixed bool test20 [-4];
8 }