Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs0031-5.cs
1 // CS0031: 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