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
Merge pull request #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs0031-5.cs
blob
f664623df019c3d6757c9ba05cbe564756dd4e2b
1
// CS0031: 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