<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1676</ErrorName>
  <Examples>
    <string>// CS1676: Parameter `1' must be declared with the `out' keyword
// Line: 10

class C
{
	delegate int D (out int i);

	public static void Main ()
	{
		 D d = a =&gt; 1;
	}
}
</string>
    <string>// CS1676: Parameter `1' must be declared with the `ref' keyword
// Line: 11
//
// The delegate has an explicit signature, so it can not be assigned.
//
delegate void D (ref int x);

class X {
	static void Main ()
	{
		D d2 = delegate (int x) {};
	}
}
</string>
  </Examples>
</ErrorDocumentation>