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