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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0472-7.cs
blob
80be3d9ace71427a19fa2fe49e2b682a9697ad43
1
// CS0472: The result of comparing value type `E' with null is always `false'
2
// Line: 14
3
// Compiler options: -warnaserror
4
5
enum
E
6
{
7
}
8
9
class
X
10
{
11
public static void
Main
()
12
{
13
E u
=
0
;
14
var
b
=
u
== (
E
?)
null
;
15
}
16
}