[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-anon-166.cs
blobc695d33738bad684b6fa8bd0ba6b36d496314ef2
1 using System;
2 using System.Collections.Generic;
4 class A
6 void Test<T, U> () where T : class, IList<U>
8 Action a = () => {
9 var d = default (T);
10 Action a2 = () => {
11 d = null;
14 a2 ();
17 a ();
20 public static int Main ()
22 var a = new A ();
23 a.Test<int[], int> ();
24 return 0;