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
2004-03-01 Larry Ewing <lewing@ximian.com>
[mono-project.git]
/
mcs
/
tests
/
test-138.cs
blob
1581d2f99ec9aec9932132b2893cd0bd4d73bafe
1
// ensure the argument to newarr is converted to int32 or native int
2
class
T
{
3
static int
Main
() {
4
char
[]
a
;
5
long
len
=
10
;
6
a
=
new char
[
len
];
7
return
0
;
8
}
9
}