<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS7023</ErrorName>
  <Examples>
    <string>// CS7023: The second operand of `is' or `as' operator cannot be static type `X'
// Line: 8

static class X
{
	public static void Main ()
	{
		var v = null is X;
	}
}</string>
    <string>// CS7023: The second operand of `is' or `as' operator cannot be static type `X'
// Line: 8

static class X
{
	public static void Main ()
	{
		var v = null as X;
	}
}</string>
  </Examples>
</ErrorDocumentation>