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-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs1925.cs
blob
6d05753109742bab8b517f6a8750563f3b75e793
1
// CS1925: Cannot initialize object of type `string[]' with a collection initializer
2
// Line: 10
3
4
class
C
5
{
6
string
[]
values
;
7
8
static void
Main
()
9
{
10
var
v
=
new
C { values = { "a" }
};
11
}
12
}