Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0464.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bea7b5268d8b033b54a6e95b3451e44a141faef6 (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 (int x)
	{
		return x < null;
	}
}