summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1935.cs
blob: b1e46666ab36988811896a2ae4c7b9ab0db6457b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1935: An implementation of `Select' query expression pattern could not be found. Are you missing `System.Linq' using directive or `System.Core.dll' assembly reference?
// Line: 10


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