Merge pull request #2314 from lambdageek/dev/local-handles
[mono-project.git] / mcs / errors / cs1920.cs
blobe13dd53655b7923f8c561a29fb56fd6ef914813c
1 // CS1920: An element initializer cannot be empty
2 // Line: 11
5 using System.Collections.Generic;
7 public class Test
9 static void Main ()
11 var d = new Dictionary <string, int> { { } };