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