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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0458-17.cs
blob
748f7730f37cd937d0a2c3bf3fe2f5366f7a5102
1
// CS0458: The result of the expression is always `null' of type `int?'
2
// Line: 10
3
// Compiler options: -warnaserror -warn:2
4
5
class
C
6
{
7
public static void
Main
()
8
{
9
int
i
=
44
;
10
i
<<=
null
;
11
}
12
}