repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove NotWorking
[mcs.git]
/
tests
/
test-145.cs
blob
78cb9a6811de06853a20753871fccb97f55f9822
1
using
System
;
2
3
class
JagArrayTest
4
{
5
private static int
[][]
array
=
{ new int [] { 1 }}
;
6
7
public static void
Main
() {
8
Console
.
WriteLine
(
array
[
0
][
0
]);
9
}
10
}
11