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-05-13 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0029-5.cs
blob
99de675970c353d7daa57a2625e86fc3bedfa872
1
// CS0029: Cannot implicitly convert type `anonymous type' to `bool'
2
// Line: 10
3
4
5
public class
Test
6
{
7
static void
Main
()
8
{
9
var
o
=
new
{ Value = 1 }
;
10
bool
b
=
o
;
11
}
12
}