<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1744</ErrorName>
  <Examples>
    <string>// CS1744: Named argument `a' cannot be used for a parameter which has positional argument specified
// Line: 13

static class C
{
	public static int Test (this int a, int b)
	{
		return a * 3 + b;
	}
	
	public static void Main ()
	{
		1.Test (a : 2);
	}
}
</string>
    <string>// CS1744: Named argument `a' cannot be used for a parameter which has positional argument specified
// Line: 12

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