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
Merge pull request #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs0847-2.cs
blob
69d54ae22b9fb2a2f74742324426b3006e85d93a
1
// CS0847: An array initializer of length `2' was expected
2
// Line: 9
3
4
class
M
5
{
6
public static void
Main
()
7
{
8
int
[,]
i
=
{ {0, 0}
,
9
{ 1 }
};
10
}
11
}