[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-collectioninit-04.cs
blob8fc41c7555a93c08c6de70756c0a5adc24f3e973
1 using System;
2 using System.Collections.Generic;
4 class X
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"
15 public static void Main ()