2005-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / errors / cs3003-5.cs
1 // cs3003.cs: Type of 'S.test2' is not CLS-compliant
2 // Line: 11
3 // Compiler options: -unsafe
4
5 using System;
6
7 [assembly: CLSCompliant (true)]
8
9 public unsafe struct S
10 {
11     public fixed bool test2 [4];
12 }