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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs1943.cs
blob
92fd59146084f852e55fd935423087476fe7b512
1
// CS1943: An expression type is incorrect in a subsequent `from' clause in a query expression with source type `string'
2
// Line: 11
3
4
using
System
.
Linq
;
5
6
class
Test
7
{
8
static void
Main
()
9
{
10
var
e
=
from
a
in
"abcd"
11
from
b
in new
Test
()
12
select
b
;
13
}
14
}