TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs8132-2.cs
blob5658fa99d6bdcb1e5e97ecd640644a92d45b74c8
1 // CS8132: Cannot deconstruct a tuple of `2' elements into `3' variables
2 // Line: 11
4 class X
6 static int xx;
7 static long yy, zz;
9 public static void Main ()
11 (xx, yy, zz) = Foo ();
14 static (int, long) Foo ()
16 return (1, 3);