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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
gcs0458.cs
blob
d504a580e6b8c1a5052f2729f025ef30f4d6baaa
1
// CS0458: The result of the expression is always `null' of type `bool?'
2
// Line: 8
3
// Compiler options: -warnaserror -warn:2
4
5
class
C
6
{
7
static void
Foo
()
8
{
9
bool
?
b
=
null as bool
?;
10
}
11
}