Merge all static runtime libs into libmono-static.
[mono.git] / mcs / tests / gtest-linq-27.cs
1 using System;
2 using System.Linq;
3
4 class C
5 {
6         public static void Main ()
7         {
8                 string[] values = new string [] { "1" };
9                 string[] values2 = new string [] { "Z" };
10                 
11                 var q = values.Select (l => l).Select (all =>
12                         (from b in values2
13                         let t = "".Any(_ => b == "a")
14                         select t));
15                 
16                 foreach (var e in q)
17                 {
18                 }
19         }
20 }
21