[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-465-lib.cs
blob2e02ceb8e9b4d7bb4551e077602b45d20598164c
1 // Compiler options: -target:library
3 public interface InterfaceWithGenericMethod
5 void GenericMethod_1<T>() where T : struct, II;
6 void GenericMethod_2<T>() where T : class, II;
7 void GenericMethod_3<T>() where T : II, new ();
10 public interface II