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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
test-757.cs
blob
e7ff12146fba80ebf91af91fb1c3bf3f69ecde52
1
public class
TestClass1
2
{
3
void
Test
()
4
{
5
double
[]
zCoords
=
new double
[
long
.
MaxValue
];
6
zCoords
=
new double
[
ulong
.
MaxValue
];
7
zCoords
=
new double
[
uint
.
MaxValue
];
8
}
9
10
public static int
Main
()
11
{
12
double
[]
zCoords
=
new double
[
2
*
2
]
{ 1, 2, 3, 4 }
;
13
return
0
;
14
}
15
}