repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0472-2.cs
blob
1d34769c4079fd58ebd902f5eabccd4fa2523c85
1
// CS0472: The result of comparing value type `int' with null is always `false'
2
// Line: 8
3
// Compiler options: -warnaserror -warn:2
4
5
public class
X
{
6
public static bool
Compute
(
int
x
)
7
{
8
return
x
==
null
;
9
}
10
}