[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0133-4.cs
1 // CS0133: The expression being assigned to `S.pathName' must be constant
2 // Line: 12
3 // Compiler options: -unsafe
4
5 class C
6 {
7     public static int i = 4;
8 }
9
10 public unsafe struct S
11 {
12     private fixed char pathName [C.i];
13 }