2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1935.cs
blobb1e46666ab36988811896a2ae4c7b9ab0db6457b
1 // 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?
2 // Line: 10
5 public class Test
7 static void Main ()
9 var v = new int[0];
10 var foo = from a in v select a;