summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1936.cs
blob: 22cd8c64cb7e3f3634f3077733f66e059dcc0447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// CS1936: An implementation of `Select' query expression pattern for source type `Item' could not be found
// Line: 16


using System.Linq;

class Item
{
}

public static class Test
{
	static void Main ()
	{
		var v = new Item ();
		var foo = from a in v select a;
	}
}