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-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0023-2.cs
blob
2e57935cb8bd0334a6393257a2d2337c2b04b3b0
1
// cs0023-2.cs: The `+' operator cannot be applied to operand of type `bool'
2
// Line : 6
3
4
class
X
{
5
static void
Main
() {
6
bool
b
= +
true
;
7
}
8
}
9
10
11