eol
[mcs.git] / tests / gtest-collectioninit-02.cs
blobb84ee064d3f1360506cdadf4900dbb70c7c95f6f
3 using System.Collections.Generic;
5 public class C
7 public static int Main ()
9 var o = new Dictionary<string, int>() { { "Foo", 3 } };
10 if (o ["Foo"] != 3)
11 return 1;
13 o = new Dictionary<string, int>() { { "A", 1 }, { "B", 2 } };
15 return 0;