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

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

public class X
{
	public static void Compute (int x)
	{
		if (true &amp;&amp; x != null)
			return;
	}
}
</string>
    <string>// CS0472: The result of comparing value type `int' with null is `false'
// Line: 9
// Compiler options: -warnaserror -warn:2

class C
{
	public static void Main ()
	{
		System.Console.WriteLine(5 == (long?)null);
	}
}
</string>
    <string>// CS0472: The result of comparing value type `int' with null is `true'
// Line: 8
// Compiler options: -warnaserror -warn:2

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