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-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0187-1.cs
blob
5f82aaf690966f2dd750f50dcedefca05c6d661d
1
// cs0187.cs: No such operator '++' defined for 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
}