// CS4010: Cannot convert async anonymous method to delegate type `System.Func' // Line: 10 // Compiler options: -langversion:future using System; class C { public static void Main () { Func a = async delegate { }; } }