<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1946</ErrorName>
  <Examples>
    <string>// CS1946: An anonymous method cannot be converted to an expression tree
// Line: 11

using System;
using System.Linq.Expressions;

class C
{
	delegate string D ();

	public static void Main ()
	{
		Expression&lt;D&gt; e = delegate () { return "a"; };
	}
}
</string>
  </Examples>
</ErrorDocumentation>