Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs1935-2.cs
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
3
4
5 public class Test
6 {
7         class Enumerable {}
8                 
9         static void Main ()
10         {
11                 var v = new int[0];
12                 var foo = from int a in v where a > 0 select a;
13         }
14 }