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-11-17 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs1059-3.cs
blob
252a9c128f950b03fda48a824069806848ec0bba
1
// CS1059: The operand of an increment or decrement operator must be a variable, property or indexer
2
// Line: 11
3
4
using
System
;
5
6
class
X
7
{
8
static void
Main
()
9
{
10
Decimal v
;
11
(
v
=
new
Decimal
())++;
12
}
13
}