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
avoid using a custom sources file for the net_2_1_raw profile
[mcs.git]
/
errors
/
gcs0458-2.cs
blob
3d96384ff5ba5255b0509159440c40e472395ae8
1
// CS0458: The result of the expression is always `null' of type `int?'
2
// Line: 8
3
// Compiler options: -warnaserror -warn:2
4
5
public class
MainClass
6
{
7
public static void
Main
()
8
{
9
object
d
= (
int
?)
null as int
?;
10
}
11
}
12