<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS4008</ErrorName>
  <Examples>
    <string>// CS4008: Cannot await void method `X.Foo()'. Consider changing method return type to `Task'
// Line: 10

using System.Threading.Tasks;

class X
{
	static async void Test ()
	{
		await Foo ();
	}
	
	static async void Foo ()
	{
		await Task.FromResult (1);
	}
}
</string>
  </Examples>
</ErrorDocumentation>