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

using System.Threading.Tasks;

class Test
{
	async static Task M1 ()
	{
		try {
		}
		catch when (await Task.Factory.StartNew (() =&gt; false)) {
		}
	}
}</string>
  </Examples>
</ErrorDocumentation>