summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-linq-19.cs
blob: 191dcd3859c0e193a417bd21b0cbf7ec7f137627 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.Linq;
using System.Linq.Expressions;

class Test
{
	static object E = from entity in "abcd" select entity;
	
	public static void Main ()
	{
	}
}