repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs1059-2.cs
blob
800f23b28f65fabeab564fd6d0ee4f32dfc36d84
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
}