[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-lambda-28.cs
blob92ca76b890d1b09fc55a75e84be530d442cad944
1 using System;
3 class G<T>
7 class C
9 static G<TResult> M<T, TResult>(G<T>[] arg, Func<G<T>[], TResult> func)
11 return null;
14 public static int Main ()
16 G<int>[] tasks = new G<int>[0];
17 G<G<int>[]> r = M(tasks, l => l);
18 return 0;