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: daa11e97031e7fce5ee66915f05cae2b7c48c7b0 (plain)
1
2
3
4
5
6
7
8
// cs1642.cs: Fixed sized buffer of length '1073741825' and type 'long' is too big
// Line: 7
// Compiler options: -unsafe

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