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

cs3003-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3d842b8e66c13191632dd5432f517271f22aacf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs3003.cs: Type of 'S.test2' is not CLS-compliant
// Line: 11
// Compiler options: -unsafe

using System;

[assembly: CLSCompliant (true)]

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