Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-collectioninit-04.cs
1 using System;
2 using System.Collections.Generic;
3
4 class X
5 {
6     internal static Dictionary<Type, Func<string, string>> Test = new Dictionary<Type, Func<string, string>> { {
7             typeof (int),
8             metadata => "1"
9         }, {
10             typeof (uint),
11             metadata => "2"
12         },
13     };
14
15     public static void Main ()
16     {
17     }
18 }