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
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
errors
/
cs0847-4.cs
blob
74bc7c7ffd7776d9eaec50c23b0092c1f676ee0c
1
// CS0847: An array initializer of length `3' was expected
2
// Line: 9
3
4
class
M
5
{
6
public static void
Main
()
7
{
8
int
[,,]
i
=
{ { { 0, 0, 0 }
,
{ 1, 1, 1 }
},
9
{ { 2 }
,
{ 3, 3, 3 }
} };
10
}
11
}