[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs1920.cs
1 // CS1920: An element initializer cannot be empty
2 // Line: 11
3
4
5 using System.Collections.Generic;
6
7 public class Test
8 {
9         static void Main ()
10         {
11                 var d = new Dictionary <string, int> { { } };
12         }
13 }