a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
13 lines
292 B
C#
13 lines
292 B
C#
// 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?
|
|
// Line: 10
|
|
|
|
|
|
public class Test
|
|
{
|
|
static void Main ()
|
|
{
|
|
var v = new int[0];
|
|
var foo = from a in v select a;
|
|
}
|
|
}
|