[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-exmethod-41.cs
blobfeaf06fbd1964726bc165303b16715ecc25191ae
1 using System.Collections.Generic;
2 using System;
4 static class TT
6 static void Method<T> (this IEnumerable<T> e, Func<T, bool> f)
10 public static void Test<U> (U u) where U : IList<string>
12 u.Method (l => l != null);
17 class A
19 public static void Main ()
21 TT.Test (new string[0]);