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
Merge pull request #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs0023-2.cs
blob
8ff165150b8c91f0adef1ce15a8be11bc6ec2ca2
1
// CS0023: 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