codeowners update
[mono.git] / mcs / errors / cs1935.cs
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
3
4
5 public class Test
6 {
7         static void Main ()
8         {
9                 var v = new int[0];
10                 var foo = from a in v select a;
11         }
12 }