[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs1989-2.cs
blobe0502365d2371fe1884889b968c7e6a8bb31a0c4
1 // CS1989: Async lambda expressions cannot be converted to expression trees
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 => Method ();