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
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0029.cs
blob
5394a0ec035216ce0b6c605074f4d3db2e61bb22
1
// cs0029.cs: Cannot implicitly convert type `X' to `bool'
2
// Line : 11
3
4
class
X
{
5
}
6
7
class
T
{
8
static void
Main
()
9
{
10
X x
=
new
X
();
11
if
(
x
){
12
}
13
}
14
}