repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1664.cs
blob
752eddd4101f36fc12033631572bc6ef5d9fc654
1
// CS1664: Fixed size buffer `C.test_1' of length `1073741825' and type `long' exceeded 2^31 limit
2
// Line: 7
3
// Compiler options: -unsafe
4
5
public unsafe struct
C
6
{
7
private fixed long
test_1
[
1073741825
];
8
}