[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-592.cs
blobf32700cadbce971e0722fbc7715f061a0a864b8b
1 using System;
2 using System.Collections.Generic;
4 public class Tests
6 static void A<T>(IReadOnlyCollection<T> otherList)
10 static void B<T>(IReadOnlyList<T> otherList)
14 public static void Main ()
16 var ifacers = typeof(int[]).GetInterfaces ();
18 var args = new string [0];
19 A (args);
20 B (args);
22 IReadOnlyList<int> e1 = new int[0];
23 IReadOnlyCollection<int> e2 = new int[0];