Updated with review feedback.
[mono.git] / mcs / errors / cs3003-8.cs
1 // CS3003: Type of `S.test2' is not CLS-compliant
2 // Line: 11
3 // Compiler options: -unsafe -warnaserror -warn:1
4
5 using System;
6
7 [assembly: CLSCompliant (true)]
8
9 public unsafe struct S
10 {
11     public fixed bool test2 [4];
12 }