<?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>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 if (true) {
			return 0;
		}
	}
}</string>
  </Examples>
</ErrorDocumentation>