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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs0464.cs
blob
bea7b5268d8b033b54a6e95b3451e44a141faef6
1
// CS0464: The result of comparing type `int?' with null is always `false'
2
// Line: 9
3
// Compiler options: -warnaserror -warn:2
4
5
public class
X
6
{
7
public static bool
Compute
(
int
x
)
8
{
9
return
x
<
null
;
10
}
11
}