Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs1665.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9fd350fd9db61574d36e212862581d5147b073f (plain)
1
2
3
4
5
6
7
8
// cs1665.cs: `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];
}