[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-xml-071.cs
blob989174571b62b7a9bdf12fe4fdc661c707a521c2
1 // Compiler options: -doc:xml-071.xml
3 namespace N
5 public class G<U>
6 {
10 interface X<out TOutput>
12 TOutput Consume (Y<TOutput> a);
15 interface Y<in TInput>
19 interface Z<in TInput, out TOutput> : Y<TInput>, X<TOutput>
23 class Test<T> : Z<T, N.G<T[][,,]>>
25 /// <summary>This is the consume method.</summary>
26 N.G<T[][,,]> X<N.G<T[][,,]>>.Consume (Y<N.G<T[][,,]>> target)
28 return null;
32 class Program
34 static void Main ()