<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS4003</ErrorName>
  <Examples>
    <string>// CS4003: `await' cannot be used as an identifier within an async method or lambda expression
// Line: 8

class Tester
{
	int await;
	
	async void Test ()
	{
		var a = new Initializer () {
			await = 2
		};
	}
}
</string>
    <string>// CS4003: `await' cannot be used as an identifier within an async method or lambda expression
// Line: 8

class Tester
{
	async void Test ()
	{
		int await = 1;
	}
}
</string>
  </Examples>
</ErrorDocumentation>