[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs8132-2.cs
1 // CS8132: Cannot deconstruct a tuple of `2' elements into `3' variables
2 // Line: 11
3
4 class X
5 {
6         static int xx;
7         static long yy, zz;
8
9         public static void Main ()
10         {
11                 (xx, yy, zz) = Foo ();
12         }
13
14         static (int, long) Foo ()
15         {
16                 return (1, 3);
17         }
18 }