[mcs] C# 7 tuple (foundation only).
[mono.git] / mcs / errors / cs8143.cs
1 // CS8143: An expression tree cannot contain a tuple literal
2 // Line: 11
3
4 using System;
5 using System.Linq.Expressions;
6
7 class C
8 {
9         public static void Main ()
10         {
11                 Expression<Func<object>> l = () => (-1, 2);
12         }
13 }