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

cs1665.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 628f01fe500f0b23a3e32cf636ca2ae8b9c0adc6 (plain)
1
2
3
4
5
6
7
8
// cs1665.cs: Fixed sized buffer 'S.test20' must have a length greater than zero
// Line: 7
// Compiler options: -unsafe

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