summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3003-8.cs
blob: b7fea9e14e8712ae11015ba8ba6a7804b8242c39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS3003: Type of `S.test2' is not CLS-compliant
// Line: 11
// Compiler options: -unsafe -warnaserror -warn:1

using System;

[assembly: CLSCompliant (true)]

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