[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-exmethod-20.cs
blob9c825184c554f3456949c690713baa57e2be91ff
1 using System;
2 using System.Collections.Generic;
4 interface I
8 namespace Outer.Inner
10 class Test {
11 static void M (I list)
13 list.AddRange(new Test[0]);
16 public static void Main()
22 namespace Outer {
23 static class ExtensionMethods {
24 public static void AddRange<T>(this I list, IEnumerable<T> items)