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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs1979.cs
blob
c093a3d9f29b0fee9aa2791b81df8744030c9c43
1
// CS1979: Query expressions with a source or join sequence of type `dynamic' are 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
}