[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / gtest-lambda-30.cs
blobf8d91a9c8ac213654d3c418c1fa6e9ab4d560e13
1 using System.Linq;
2 using System;
4 class C
6 static object Method <T>(object[] objects)
8 return objects.Select(obj => new Func<T, object>(x => obj));
11 public static void Main ()
13 Method<string> (new[] { "a", "b", "c" });