[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-anon-161.cs
blob4fb07e9766fc0b3e874c8c97fa25747c45cea950
1 using System;
2 using System.Collections.Generic;
4 public class TestCase
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 {
14 var temp = l;
15 Func<IList<IList<T>>, int> f = a => 1;
16 f (temp);
19 action ();