[mcs] C# 7 tuple (foundation only).
[mono.git] / mcs / errors / cs8144.cs
1 // CS8144:
2 // Line: 12
3
4 using System;
5 using System.Linq.Expressions;
6
7 class X
8 {
9         public static void Main ()
10         {
11                 (byte b, short d) t = (0, 0);
12                 Expression<Func<(int a, int aa)>> e = () => t;
13         }
14 }