<?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>CS1688</ErrorName>
  <Examples>
    <string>// CS1688: Cannot convert anonymous method block without a parameter list to delegate type `C.WithOutParam' because it has one or more `out' parameters
// Line: 10

class C
{
	delegate void WithOutParam (out string value);

    static void Main() 
    {
        WithOutParam o = delegate
			{ 
				return;
			};
    }
}</string>
  </Examples>
</ErrorDocumentation>