summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1920.cs
blob: e13dd53655b7923f8c561a29fb56fd6ef914813c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1920: An element initializer cannot be empty
// Line: 11


using System.Collections.Generic;

public class Test
{
	static void Main ()
	{
		var d = new Dictionary <string, int> { { } };
	}
}