summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0031-5.cs
blob: f664623df019c3d6757c9ba05cbe564756dd4e2b (plain)
1
2
3
4
5
6
7
8
9
// CS0031: Constant value `200000000000' cannot be converted to a `int'
// Line: 7
// Compiler options: -unsafe

public unsafe struct C
{
    private fixed long test_1 [200000000000];
}