<?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>CS0464</ErrorName>
  <Examples>
    <string>// CS0464: The result of comparing type `int?' with null is always `false'
// Line: 9
// Compiler options: -warnaserror -warn:2

public class X
{
	public static bool Compute (int? x)
	{
		return x &gt;= null;
	}
}
</string>
    <string>// CS0464: The result of comparing type `int?' with null is always `false'
// Line: 9
// Compiler options: -warnaserror -warn:2

public class X
{
	public static bool Compute ()
	{
		return null &gt;= null;
	}
}
</string>
    <string>// CS0464: The result of comparing type `int' with null is always `false'
// Line: 9
// Compiler options: -warnaserror -warn:2

public class X
{
	public static bool Compute (int x)
	{
		return x &lt; null;
	}
}
</string>
  </Examples>
</ErrorDocumentation>