<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1989</ErrorName>
  <Examples>
    <string>// CS1989: Async lambda expressions cannot be converted to expression trees
// Line: 17

using System;
using System.Linq.Expressions;
using System.Threading.Tasks;

class C
{
	static Task Method ()
	{
		return null;
	}
	
	public static void Main ()
	{
		Expression&lt;Action&lt;int&gt;&gt; a = async l =&gt; Method ();
	}
}
</string>
    <string>// CS1989: Async lambda expressions cannot be converted to expression trees
// Line: 17

using System;
using System.Linq.Expressions;
using System.Threading.Tasks;

class C
{
	static Task Method ()
	{
		return null;
	}
	
	public static void Main ()
	{
		Expression&lt;Action&lt;int&gt;&gt; a = async l =&gt; await Method ();
	}
}
</string>
  </Examples>
</ErrorDocumentation>