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
2009-06-26 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0847.cs
blob
d3da37983c26f154024931a8423957f1a93ed4a6
1
// CS0847: An array initializer of length `1' was expected
2
// Line: 8
3
4
class
M
5
{
6
public static void
Main
()
7
{
8
int
[]
i
=
new int
[
1
]
{ 2, 3 }
;
9
}
10
}