<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS7095</ErrorName>
  <Examples>
    <string>// CS7095: Exception filter expression is a constant
// Line: 12
// Compiler options: -warnaserror

using System;

class X
{
	public static int Main ()
	{
		try {
			throw new ApplicationException ();
		} catch when (true) {
			return 0;
		}
	}
}</string>
  </Examples>
</ErrorDocumentation>