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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
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
}