<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1986</ErrorName>
  <Examples>
    <string>// CS1986: The `await' operand type `int' must have suitable GetAwaiter method
// Line: 15

static class S
{
	public static void GetAwaiter (this int i)
	{
	}
}

class A
{
	static async void Test ()
	{
		await 1;
	}
}</string>
    <string>// CS1986: The `await' operand type `int' must have suitable GetAwaiter method
// Line: 16

static class S
{
	public static int GetAwaiter&lt;T&gt; (this int i)
	{
		return 1;
	}
}

class A
{
	static async void Test ()
	{
		await 9;
	}
}</string>
    <string>// CS1986: The `await' operand type `A' must have suitable GetAwaiter method
// Line: 17

static class S
{
	public static void GetAwaiter (this int i)
	{
	}
}

class A
{
	bool GetAwaiter;
	
	static async void Test ()
	{
		await new A ();
	}
}</string>
  </Examples>
</ErrorDocumentation>