[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-848.cs
blobcaf7062ca7cfa01273026f80c2e187a0f9ed47a7
1 using System;
3 public class A<T>
7 class Program
9 public static void Foo<TEventArgs, TEventHandler> (A<TEventHandler> info, Action<object, TEventArgs> action)
13 public static void Main ()
15 A<string> pp = null;
16 Foo (pp, (object s, string e) => { });