<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS4022</ErrorName>
  <Examples>
    <string>// CS4022: The CallerMemberName attribute can only be applied to parameters with default value
// Line: 8

using System.Runtime.CompilerServices;

class C
{
	public void Trace([CallerMemberName] string member)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>