<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8189</ErrorName>
  <Examples>
    <string>// CS8189: By reference return delegate does not match `C.D()' return type
// Line: 15

class C
{
	delegate ref int D ();

	static int M ()
	{
		return 1;
	}

	static void Main ()
	{
		D d = new D (M);
	}
}</string>
  </Examples>
</ErrorDocumentation>