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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0623.cs
blob
b435772294ba5df7e372dc211a0ef6c5a0dbf95a
1
// CS0623: 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