Add a more functional (i.e. fewer-stubs) implementation of System.Data.Linq.
[mono.git] / mcs / tests / gtest-linq-19.cs
1 using System.Linq;
2 using System.Linq.Expressions;
3
4 class Test
5 {
6         static object E = from entity in "abcd" select entity;
7         
8         public static void Main ()
9         {
10         }
11 }