<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS1997</ErrorName>
  <Examples>
    <string>// CS1997: `System.Func&lt;System.Threading.Tasks.Task&gt;': A return keyword must not be followed by an expression when async delegate returns `Task'. Consider using `Task&lt;T&gt;' return type
// Line: 12

using System;
using System.Threading.Tasks;

class Test
{
	public static void Main()
	{
		Func&lt;Task&gt; t = async delegate {
			return null;
		};

		return;
	}
}
</string>
    <string>// CS1997: `C.Test()': A return keyword must not be followed by an expression when async method returns `Task'. Consider using `Task&lt;T&gt;' return type
// Line: 12

using System;
using System.Threading.Tasks;

class C
{
	public async Task Test ()
	{
		await Call ();
		return null;
	}
	
	static Task Call ()
	{
		return null;
	}
}
</string>
  </Examples>
</ErrorDocumentation>