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
New tests.
[mcs.git]
/
errors
/
dcs1979.cs
blob
2a290e81281fe583e2d6f28d8648b698ec679141
1
// CS1977: Query expression with a source or join sequence of type `dynamic' is not allowed
2
// Line: 11
3
4
using
System
.
Linq
;
5
6
class
C
7
{
8
public static void
Main
()
9
{
10
dynamic
d
=
null
;
11
var
r
=
from
x
in
d
select
x
;
12
}
13
}