<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1997</ErrorName>
  <Examples>
    <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>