[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-549.cs
blobd732bc5bd6ef35f29da64c741fd0da61fcf75034
1 class C<T>
3 public interface IA
5 void MA (T arg);
8 public interface IB : IA
10 void MB (T arg);
14 class D : C<int>
16 public class Impl : IB
18 public void MA (int arg)
22 public void MB (int arg)
28 class Test
30 public static void Main ()
32 C<int>.IB arg = new D.Impl ();
33 arg.MA (1);
34 arg.MB (1);