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-02-15 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
errors
/
cs1586.cs
blob
c7037b9237b66388c12c68a6ed41b625b0186943
1
// cs01586.cs: Array creation must have array size or array initializer
2
// Line: 6
3
4
class
C
5
{
6
public static void
Main
()
7
{
8
int
[]
i
=
new int
[];
9
}
10
}