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
2009-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0458-3.cs
blob
ee41ef3017b302c3f4f5ee7ac64260df0e7deb90
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
int
?
i
=
2
;
10
i
*=
null
;
11
}
12
}