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
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0458-4.cs
blob
37be80ab771b4fe6efed0a7a450250fd9f7f28b3
1
// CS0458: The result of the expression is always `null' of type `int?'
2
// Line: 8
3
// Compiler options: -warnaserror -warn:2
4
5
class
C
6
{
7
static void
Main
()
8
{
9
ushort
us
=
22
;
10
int
?
r
=
us
<<
null
;
11
}
12
}