In .:
[mono.git] / mcs / errors / cs0266-4.cs
1 // cs0266.cs: Cannot implicitly convert type `long' to `int'. An explicit conversion exists (are you missing a cast?)
2 // Line: 7
3 // Compiler options: -unsafe
4
5 public unsafe struct C
6 {
7     private fixed long test_1 [200000000000];
8 }
9