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-06-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0023-14.cs
blob
63f11633c9fc8e9b3fc843989b133710b1400ff2
1
// CS0023: The `++' operator cannot be applied to operand of type `bool'
2
// Line: 13
3
4
public class
C
{
5
public static bool
Foo
{
6
get
{
7
return false
;
8
}
9
set
{
10
}
11
}
12
public static void
Main
(){
13
Foo
++;
14
}
15
}