summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1665.cs
blob: 6508e548bf3e8f3a4d7ffe7b024d3d3250314f31 (plain)
1
2
3
4
5
6
7
8
// CS1665: `S.test20': Fixed size buffers must have a length greater than zero
// Line: 7
// Compiler options: -unsafe

public unsafe struct S
{
    public fixed bool test20 [-4];
}