<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS1985</ErrorName>
  <Examples>
    <string>// CS1985: The `await' operator cannot be used in the body of a catch clause
// Line: 13

using System;
using System.Threading.Tasks;

class C
{
	public async Task Test ()
	{
		try {
		} catch {
			await Call ();
		}
	}
	
	static Task Call ()
	{
		return null;
	}
}
</string>
  </Examples>
</ErrorDocumentation>