[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1644-44.cs
blob80013d335caff816971d2f1b185ebde0763bcad8
1 // CS1644: Feature `dictionary initializer' cannot be used because it is not part of the C# 5.0 language specification
2 // Line: 12
3 // Compiler options: -langversion:5
5 using System.Collections.Generic;
7 class C
9 public static void Main ()
11 var d = new Dictionary<string, int> {
12 ["a"] = 1