<?xml version="1.0" encoding="iso-8859-1"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS1662</ErrorName>
  <Examples>
    <string>// cs1662: Can not convert the anonymous method, as the returned value does not match the return type of the delegate
// Line: 11
//
// Return type mismatch.
//
delegate void D (int x);

class X {
	static void Main ()
	{
		D d6 = delegate (int x) { return x; }; // Return type mismatch.
	}
}
</string>
  </Examples>
</ErrorDocumentation>