repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0464.cs
blob
b6ae39620265cc6b22e42507f88276f187fbe23d
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
}