[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0133-4.cs
blob54162d544ca2163b368d2de3df5a04204c60074c
1 // CS0133: The expression being assigned to `S.pathName' must be a constant or default value
2 // Line: 12
3 // Compiler options: -unsafe
5 class C
7 public static int i = 4;
10 public unsafe struct S
12 private fixed char pathName [C.i];