<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8152</ErrorName>
  <Examples>
    <string>// CS8152: `C' does not implement interface member `IA.Foo()' and the best implementing candidate `C.Foo()' return type `void' does not return by reference
// Line: 11

interface IA
{
	ref char Foo ();
}

public class C : IA
{
	public void Foo ()
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>