Remove no longer needed explicit -langversion:future argument
[mono-project.git] / mcs / errors / cs1989.cs
blob7c5a84952f7747ca67ca08e629d6d101f36b4996
1 // CS1989: An expression tree cannot contain an await operator
2 // Line: 17
4 using System;
5 using System.Linq.Expressions;
6 using System.Threading.Tasks;
8 class C
10 static Task Method ()
12 return null;
15 public static void Main ()
17 Expression<Action<int>> a = async l => await Method ();