<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0835</ErrorName>
  <Examples>
    <string>// CS0835: Cannot convert `lambda expression' to an expression tree of non-delegate type `string'
// Line: 10

using System.Linq.Expressions;

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