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
Warnings cleanup
[mcs.git]
/
errors
/
cs0023-13.cs
blob
cd39fd50b47b1ae6e9f54cddde2a1e471b2ca752
1
// CS0023: The `++' operator cannot be applied to operand of type `X'
2
// Line: 9
3
4
class
X
{
5
static void
Main
()
6
{
7
X x
=
new
X
();
8
9
x
++;
10
}
11
}