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
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0846.cs
blob
2eb46fcb59ad6552ea24faf7c5e1fb48abd1d223
1
// CS0846: A nested array initializer was expected
2
// Line: 8
3
4
class
M
5
{
6
public static void
Main
()
7
{
8
int
[,]
i
=
new int
[
1
,
1
]
{ 2 }
;
9
}
10
}