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-11.cs
blob
26f8e0c890b60e4125e3d996af05f84d606b8b8d
1
// CS0458: The result of the expression is always `null' of type `ulong?'
2
// Line: 10
3
// Compiler options: -warnaserror -warn:2
4
5
class
C
6
{
7
static void
Foo
()
8
{
9
ulong
a
=
100
;
10
var
res
=
a
<<
null
;
11
}
12
}