[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-032.cs
blob39624edea10f0aa97b18569199a81c6925a5d70f
1 // Generic interfaces
3 interface Foo<S>
5 void Hello (S s);
8 interface Bar<T,U> : Foo<U>
10 void Test (T t, U u);
13 class X
15 static void Test (Bar<int,string> bar)
17 bar.Hello ("Test");
18 bar.Test (7, "Hello");
21 public static void Main ()
22 { }