<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8184</ErrorName>
  <Examples>
    <string>// CS8184: A deconstruction cannot mix declarations and expressions on the left-hand-side
// Line: 8

class X
{
	public static void Main ()
	{
		(int a, b) = (1, 2);
	}
}</string>
  </Examples>
</ErrorDocumentation>