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
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
gcs0472-4.cs
blob
22f943579f10a96e9461218baafaefff9f094f54
1
// CS0472: The result of comparing value type `int' with null is `false'
2
// Line: 9
3
// Compiler options: -warnaserror -warn:2
4
5
class
C
6
{
7
public static void
Main
()
8
{
9
System
.
Console
.
WriteLine
(
5
== (
long
?)
null
);
10
}
11
}