repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs1935.cs
blob
b1e46666ab36988811896a2ae4c7b9ab0db6457b
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
}