New tests, and fixed buffer mcs -> gmcs switch.
[mono.git] / mcs / errors / gcs0031.cs
1 // cs0031-5.cs: Constant value `200000000000' cannot be converted to a `int'
2 // Line: 7
3 // Compiler options: -unsafe
4
5 public unsafe struct C
6 {
7     private fixed long test_1 [200000000000];
8 }
9