repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs1936.cs
blob
22cd8c64cb7e3f3634f3077733f66e059dcc0447
1
// CS1936: An implementation of `Select' query expression pattern for source type `Item' could not be found
2
// Line: 16
3
4
5
using
System
.
Linq
;
6
7
class
Item
8
{
9
}
10
11
public static class
Test
12
{
13
static void
Main
()
14
{
15
var
v
=
new
Item
();
16
var
foo
=
from
a
in
v
select
a
;
17
}
18
}