[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs1664.cs
1 // CS1664: Fixed size buffer `C.test_1' of length `1073741825' and type `long' exceeded 2^31 limit
2 // Line: 7
3 // Compiler options: -unsafe
4
5 public unsafe struct C
6 {
7     private fixed long test_1 [1073741825];
8 }