summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1925.cs
blob: 6d05753109742bab8b517f6a8750563f3b75e793 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1925: Cannot initialize object of type `string[]' with a collection initializer
// Line: 10

class C
{
	string[] values;
	
	static void Main ()
	{
		var v = new C { values = { "a" } };
	}
}