[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs8143.cs
blob19064cdea1a35cd800ef05d56f4b8e2228e24e68
1 // CS8143: An expression tree cannot contain a tuple literal
2 // Line: 11
4 using System;
5 using System.Linq.Expressions;
7 class C
9 public static void Main ()
11 Expression<Func<object>> l = () => (-1, 2);