linux-packaging-mono/mcs/tests/test-anon-161.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

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 ();
}
}