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
/
cs0458-14.cs
blob
865b7ba73d64a47fabec43d85ec4508ac24a9510
1
// CS0458: The result of the expression is always `null' of type `int?'
2
// Line: 14
3
// Compiler options: -warnaserror -warn:2
4
5
public enum
E
6
{
7
}
8
9
class
C
10
{
11
public static void
Main
()
12
{
13
E
?
e
=
null
;
14
var
res
=
e
-
null
;
15
}
16
}