Fix DateTime.Now and CurrentTimeToUtc during DST transition time (#4172)
[mono-project.git] / mcs / tests / gtest-lambda-16.cs
blobc3b86300b487d0da5d2318017c58c14eceacc090
1 using System;
2 using System.Collections.Generic;
4 class Repro
6 class Runner<T>
8 public Runner (Action<T> action, T t) { }
11 static void AssertFoo<T> (IList<T> list)
13 new Runner<int> (delegate {
14 foreach (T item in list) { }
15 }, 42);
18 public static void Main ()