[mcs] Add expression bodied syntax for accessors. Fixes #54991
[mono.git] / mcs / errors / cs1644-18.cs
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 }