<?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>CS0620</ErrorName>
  <Examples>
    <string>// CS0620: An indexer return type cannot be `void'
// Line: 5

interface Indexer {
        void this [int i] { set; }
}
</string>
    <string>// CS0620: An indexer return type cannot be `void'
// Line: 5

class PropertyClass {
        public void this [int i] { set {}
        }
}
</string>
  </Examples>
</ErrorDocumentation>