Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / tests / gtest-linq-21.cs
1 using System;
2 using System.Linq;
3
4 static class Program
5 {
6         static int Main()
7         {
8                 int i = 0;
9                 var input = new int[] { 1 };
10                 var input2 = new int[] { 5 };
11                 var r = 
12                         from _ in input
13                         from y in input2
14                         select (Action)(() => Console.WriteLine("{0} {1} {2}", i, _, y));
15                 
16                 r.ToList () [0] ();
17                 return 0;
18         }
19 }
20