[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs4010-2.cs
blob61cf3462f03fd83d6168c5c3acfbe14aaa0120a3
1 // CS4010: Cannot convert async anonymous method to delegate type `System.Func<string>'
2 // Line: 10
4 using System;
6 class C
8 public static void Main ()
10 Func<string> a = async delegate { };