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
/
cs1059.cs
blob
b598a8d1b8ea69ca00dfccc1a045fe8b7fc1e931
1
// CS1059: The operand of an increment or decrement operator must be a variable, property or indexer
2
// Line: 9
3
4
static class
C
5
{
6
static void
Foo
()
7
{
8
const int
uu
=
1
;
9
uu
++;
10
}
11
}