[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-594.cs
blob0c09ef892e539c8b34e661df440834f4fa5b1cd9
1 using System;
3 public interface IFoo<U>
5 void Foo<T> () where T : C;
8 public class C : IA
12 public interface IA
16 class Y : IFoo<int>
18 public void Foo<T> () where T : C
23 class X
25 public static void Main()
27 new Y ();