[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-anon-120.cs
blobac2a101566077997813607b408e7269382ec71f4
1 using System;
3 class C<T>
5 public static void Foo<U> (U arg)
7 Action a = () => C<U>.Run ();
8 a ();
11 static void Run ()
16 class A
18 public static void Main ()
20 C<int>.Foo<long> (8);