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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
gcs1644-8.cs
blob
a148ca507377710f18451fd4fadcf9c93c753d8f
1
// CS1644: Feature `query expressions' cannot be used because it is not part of the C# 2.0 language specification
2
// Line: 11
3
// Compiler options: -langversion:ISO-2
4
5
using
System
.
Linq
;
6
7
public class
C
8
{
9
public static void
Main
()
10
{
11
var
e
=
from
a
in
"aaa"
select
a
;
12
}
13
}