<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1998</ErrorName>
  <Examples>
    <string>// CS1998: Async block lacks `await' operator and will run synchronously
// Line: 10
// Compiler options: -warnaserror

using System;
using System.Threading.Tasks;

class C
{
	static async Task&lt;int&gt; Method ()
	{
		return 0;
	}
	
	public static void Main ()
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>