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
tag rc1
[mcs.git]
/
errors
/
cs1059-2.cs
blob
979088d14bb5756a829696c6dce58fb5d2a27b48
1
// CS1059: The operand of an increment or decrement operator must be a variable, property or indexer
2
// Line: 8
3
4
using
System
;
5
6
public class
Test
{
7
void
Main
() {
8
Console
.
WriteLine
(++
0
);
9
}
10
}