[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-423.cs
blobef32033691855444b99bf4f55b45f446d4f627a6
1 using System;
3 namespace MonoTest
5 public class A<TA>
7 class B<TB>
9 static void foo ()
13 class C
15 static void bar ()
17 foo ();
18 B<C>.foo ();
19 A<C>.B<C>.foo ();
25 class Program
27 public static void Main ()