Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / gcs1925.cs
blob6d05753109742bab8b517f6a8750563f3b75e793
1 // CS1925: Cannot initialize object of type `string[]' with a collection initializer
2 // Line: 10
4 class C
6 string[] values;
8 static void Main ()
10 var v = new C { values = { "a" } };