Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1664.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4deb9773d8afdbd849e295afb013790d68e695a (plain)
1
2
3
4
5
6
7
8
// cs1664.cs: Fixed size buffer `C.test_1' of length `1073741825' and type `long' exceeded 2^31 limit
// Line: 7
// Compiler options: -unsafe

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