Merge pull request #5675 from mono/glib-debug-symbols
[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 }