<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8323</ErrorName>
  <Examples>
    <string>// CS8323: Named argument `str' is used out of position but is followed by positional argument
// Line: 9
// Compiler options: -langversion:7.2

class X
{
	public static void Main ()
	{
		Test (str: "", "");
	}

	static void Test (int arg, string str)
	{
	}
}</string>
  </Examples>
</ErrorDocumentation>