Fix DateTime.Now and CurrentTimeToUtc during DST transition time (#4172)
[mono-project.git] / mcs / tests / test-anon-177.cs
blobcb31425b53241add87ab206dd0abc8c030bb8433
1 using System;
2 using System.Linq;
3 using System.Collections.Generic;
5 class X
7 public static void Execute<TArg>(TArg args)
9 Action a = () => {
10 List<string> s = new List<string> () {
11 "test"
14 object res = null;
15 var res2 = s.Select(acrl => acrl.Select(acr => res)).ToArray ();
18 a ();
21 public static void Main ()
23 Execute<string> (null);