linux-packaging-mono/mcs/tests/test-anon-161.cs

21 lines
340 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
public class TestCase
{
public static void Main ()
{
Test (new IList<int> [] { new int[] { 1, 2, 3 } });
}
public static void Test<T> (IList<IList<T>> l)
{
Action action = delegate {
var temp = l;
Func<IList<IList<T>>, int> f = a => 1;
f (temp);
};
action ();
}
}