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


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