repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update the reference assemblies we ship in mono.
[mono-project.git]
/
mcs
/
errors
/
cs0173-4.cs
blob
df1408f40e53c17c58933bbce16dbe664b3a8e28
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
}