<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <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 ()
	{
		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>
    <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 `E?' with null is always `false'
// Line: 14
// Compiler options: -warnaserror

enum E
{
}

class X
{
	public static void Main ()
	{
		E u = 0;
		var b = u &lt; (E?) null;
	}
}</string>
    <string>// CS0464: The result of comparing type `int?' with null is always `false'
// Line: 10
// Compiler options: -warnaserror -warn:2

class C
{
	public static void Main ()
	{
		int? k = 1;
		var x = k &gt; null;
	}
}</string>
  </Examples>
</ErrorDocumentation>