* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0031-5.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