<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8123</ErrorName>
  <Examples>
    <string>// CS8123: The tuple element name `b' is ignored because a different name or no name is specified by the target type `(long, string)'
// Line: 9
// Compiler options: -warnaserror

static class X
{
	static (long a, string x) Test ()
	{
		return (b: 1, "");
	}
}</string>
    <string>// CS8123: The tuple element name `a' is ignored because a different name or no name is specified by the target type `(int, int)'
// Line: 9
// Compiler options: -warnaserror

class C
{
	public static void Main ()
	{
		(int tt1, int tt2) t = (a: 1, 2);
	}
}</string>
  </Examples>
</ErrorDocumentation>