2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1935-2.cs
blob165b566c98182f1e14eab5d0d9e4d5555ee085e4
1 // 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?
2 // Line: 12
5 public class Test
7 class Enumerable {}
9 static void Main ()
11 var v = new int[0];
12 var foo = from int a in v where a > 0 select a;