Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs1920.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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> { { } };
	}
}