2005-06-16 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / errors / cs0133-2.cs
1 // cs0133.cs: 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 }