<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8132</ErrorName>
  <Examples>
    <string>// CS8132: Cannot deconstruct a tuple of `2' elements into `3' variables
// Line: 11

class X
{
	static int xx;
	static long yy, zz;

	public static void Main ()
	{
		(xx, yy, zz) = Foo ();
	}

	static (int, long) Foo ()
	{
		return (1, 3);
	}
}</string>
    <string>// CS8132: Cannot deconstruct a tuple of `2' elements into `3' variables
// Line: 8

class C
{
	public static void Main ()
	{
		var (t, u, v) = (1, 2);
	}
}</string>
  </Examples>
</ErrorDocumentation>