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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs0173.cs
blob
cdadccdcd51c9dd55994d0e6e7adacc2c5deb50a
1
// CS0173: Type of conditional expression cannot be determined because there is no implicit conversion between `null' and `null'
2
// Line: 10
3
4
using
System
;
5
6
class
X
7
{
8
static int
Main
(
string
[]
args
)
9
{
10
int
[]
t
=
args
.
Length
>
0
?
null
:
null
;
11
return
t
==
null
?
0
:
1
;
12
}
13
}