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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0623.cs
blob
cb10dd6d14562e2b43a836e1bc462b421b96c7e7
1
// cs0623.cs: Array initializers can only be used in a variable or field initializer. Try using a new expression instead
2
// Line: 7
3
4
class
C
5
{
6
public int
[]
a
=
{ 2, {1}
};
7
}
8