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-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0173-2.cs
blob
3c8bff6a047dc3654381ebd1c08ca36f5a1bb4a3
1
// cs0173-2.cs: Type of conditional expression cannot be determined because there is no implicit conversion between `int' and `null'
2
// Line: 29
3
4
public class
MainClass
{
5
public static void
Main
() {
6
bool
result
=
false
;
7
System
.
Console
.
WriteLine
(
result
?
1
:
null
);
8
}
9
}