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