<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS4029</ErrorName>
  <Examples>
    <string>// CS4029: Cannot return an expression of type `void'
// Line: 15

using System;
using System.Threading.Tasks;

class C
{
	static void Foo&lt;T&gt; (Func&lt;Task&lt;T&gt;&gt; f)
	{
	}

	static void Main ()
	{
		Foo (async () =&gt; {
			return await Task.Factory.StartNew (() =&gt; { });
		});
	}
}</string>
  </Examples>
</ErrorDocumentation>