// CS1989: An expression tree cannot contain an await operator // Line: 17 // Compiler options: -langversion:future using System; using System.Linq.Expressions; using System.Threading.Tasks; class C { static Task Method () { return null; } public static void Main () { Expression> a = async l => await Method (); } }