<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS4009</ErrorName>
  <Examples>
    <string>// CS4009: `C.Main()': an entry point cannot be async method
// Line: 8

class C
{
	public static async void Main ()
	{
		await Call ();
	}
	
	static async void Call ()
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>