<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1741</ErrorName>
  <Examples>
    <string>// CS1741: Cannot specify a default value for the `out' parameter
// Line: 6

interface I
{
	void Test (out bool a = true);
}

</string>
    <string>// CS1741: Cannot specify a default value for the `ref' parameter
// Line: 6

public class C
{
	public void Test (ref bool a = true)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>