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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1586.cs
blob
81cd1f68a4c2c04730da9a92ef656d0cb30d6411
1
// CS1586: 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
}