summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0464-3.cs
blob: 5c4632b603e1b6fe1862b9e29bc039a756c633ea (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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 >= null;
	}
}