2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / 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" } };