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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
test-32.cs
blob
94399b230e2f345a41e450273ac0b62b41d381f8
1
using
System
;
2
3
public class
Blah
{
4
5
public static int
Main
()
6
{
7
int
[][]
i
=
new int
[
2
][];
8
9
int
[,][]
j
=
new int
[
3
,
6
][];
10
11
Blah
[]
k
=
new
Blah
[
2
];
12
13
Blah
[,][]
l
=
new
Blah
[
3
,
4
][];
14
15
Uri
[]
uri
=
new
Uri
[
4
];
16
17
Console
.
WriteLine
(
"All arrays successfully created"
);
18
19
return
0
;
20
}
21
}