[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-067.cs
blob8d1a09f67f0970fd4c19483caf4ef86dcfe54759
1 class Test
3 public delegate int Foo<T> (T t, T u);
5 public void Hello<U> (Foo<U> foo, U u)
6 { }
9 class X
11 static int Add (int a, int b)
13 return a + b;
16 public static void Main ()
18 Test test = new Test ();
19 test.Hello<int> (new Test.Foo<int> (Add), 5);