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 #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs0201-7.cs
blob
1cefa3e7ec1267a520577aa490e8df663aae3c23
1
// CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
2
// Line: 10
3
4
using
System
.
Linq
;
5
6
class
C
7
{
8
public static void
Main
()
9
{
10
from
s
in
"string"
select
s
;
11
}
12
}