Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

15 lines
330 B
C#

// 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?
// Line: 12
public class Test
{
class Enumerable {}
static void Main ()
{
var v = new int[0];
var foo = from int a in v where a > 0 select a;
}
}