2 using System
.Collections
.Generic
;
6 public static void Main ()
8 Test (new IList
<int> [] { new int[] { 1, 2, 3 }
});
11 public static void Test
<T
> (IList
<IList
<T
>> l
)
13 Action action
= delegate {
15 Func
<IList
<IList
<T
>>, int> f
= a
=> 1;