<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS4018</ErrorName>
  <Examples>
    <string>// CS4018: The CallerFilePath attribute cannot be applied because there is no standard conversion from `string' to `int'
// Line: 8

using System.Runtime.CompilerServices;

class C
{
	public void Trace([CallerFilePath] int member = 0)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>