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-03-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0173-4.cs
blob
c0b7b58428ca991637591e131f80d19723ce14c2
1
// CS0173: Type of conditional expression cannot be determined because there is no implicit conversion between `null' and `null'
2
// Line: 8
3
4
class
X
5
{
6
static void
Main
(
string
[]
args
)
7
{
8
bool
b
=
args
.
Length
>
0
?
null
:
null
;
9
}
10
}