<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS4016</ErrorName>
  <Examples>
    <string>// CS4016: `C.GetValue()': The return expression type of async method must be `int' rather than `Task&lt;int&gt;'
// Line: 12

using System;
using System.Threading.Tasks;

class C
{
	public async Task&lt;int&gt; GetValue()
	{
		await Task.FromResult (0);
		return Task.FromResult (1);
	}
}
</string>
  </Examples>
</ErrorDocumentation>