Merge pull request #1900 from esdrubal/cyclic-ref
[mono-project.git] / mcs / errors / cs1935.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;