<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS4010</ErrorName>
  <Examples>
    <string>// CS4010: Cannot convert async lambda expression to delegate type `System.Func&lt;bool&gt;'
// Line: 16

using System;
using System.Threading.Tasks;

class C
{
	static Task&lt;int&gt; GetInt ()
	{
		return null;
	}
	
	public static void Main ()
	{
		Func&lt;bool&gt; a = async () =&gt; { await GetInt (); };
	}
}
</string>
    <string>// CS4010: Cannot convert async anonymous method to delegate type `System.Func&lt;string&gt;'
// Line: 10

using System;

class C
{
	public static void Main ()
	{
		Func&lt;string&gt; a = async delegate { };
	}
}
</string>
  </Examples>
</ErrorDocumentation>