Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-debug-16.cs
1 using System;
2 using System.Collections.Generic;
3
4 class C
5 {
6         string Name;
7         int value;
8         
9         public static void Main ()
10         {
11         }
12         
13         void Test_1 ()
14         {
15                 var o = new Dictionary<string, int> ()
16                 {
17                         {
18                                 "Foo", 3
19                         },
20                         {
21                                 "Bar", 1
22                         },
23                 };
24         }
25         
26         void Test_2 ()
27         {
28                 var user = new C()
29                 {
30                         Name = "nn",
31                         value = 8
32                 };
33         }
34 }