Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-exmethod-41.cs
1 using System.Collections.Generic;
2 using System;
3
4 static class TT
5 {
6         static void Method<T> (this IEnumerable<T> e, Func<T, bool> f)
7         {
8         }
9         
10         public static void Test<U> (U u) where U : IList<string>
11         {
12                 u.Method (l => l != null);
13         }
14 }
15
16
17 class A
18 {
19         public static void Main ()
20         {
21                 TT.Test (new string[0]);
22         }
23 }