a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
21 lines
340 B
C#
21 lines
340 B
C#
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 ();
|
|
}
|
|
} |