<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0415</ErrorName>
  <Examples>
    <string>// cs0415.cs: The `IndexerName' attribute is valid only on an indexer that is not an explicit interface member declaration
// Line: 11

using System.Runtime.CompilerServices;

interface A {
	int this [int a] { set; }
}

class X : A {
        [IndexerName("Error")]
	int A.this [int a] { set {} }
}

</string>
  </Examples>
</ErrorDocumentation>