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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
cs0622.cs
blob
4b8530befc4a57f06199be367a3bec4a361f3311
1
// cs0622.cs: Can only use array initializer expressions to assign to array types. Try using a new expression instead
2
// Line: 7
3
4
class
X
{
5
public static void
Main
()
6
{
7
int
i
=
{ 3, 4, 5}
;
8
}
9
}