<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8129</ErrorName>
  <Examples>
    <string>// CS8129:
// Line:

using System;

class C
{
	static void Main ()
	{
		long x;
		string y;
		(x, y) = new C ();
	}

	public static void Deconstruct (out int a, out string b)
	{
		a = 1;
		b = "hello";
	}
}</string>
  </Examples>
</ErrorDocumentation>