<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0834</ErrorName>
  <Examples>
    <string>// CS0834: A lambda expression with statement body cannot be converted to an expresion tree
// Line: 12

using System.Linq.Expressions;

class C
{
	delegate bool D ();
	
	public void Foo ()
	{
		Expression&lt;D&gt; e = () =&gt; { return true; };
	}
}
</string>
    <string>// CS0834: A lambda expression with statement body cannot be converted to an expresion tree
// Line: 12

using System.Linq.Expressions;

class C
{
	delegate void D ();
	
	public void Foo ()
	{
		Expression&lt;D&gt; e = () =&gt; { };
	}
}
</string>
  </Examples>
</ErrorDocumentation>