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 #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs1942.cs
blob
e6cffda8210b1a718f58e352f4c41cf02bd36974
1
// CS1942: An expression type in `select' clause is incorrect. Type inference failed in the call to `Select'
2
// Line: 12
3
4
using
System
;
5
using
System
.
Linq
;
6
7
class
C
8
{
9
public static void
Main
()
10
{
11
var
e
=
from
values
in
"abcd"
12
select null
;
13
}
14
}