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
2007-03-09 Chris Toshok <toshok@ximian.com>
[mcs.git]
/
errors
/
cs0448.cs
blob
0016de5e05743dd2ee420d52bc8883d8e2733184
1
// cs0448.cs: The return type for ++ or -- operator must be the containing type or derived from the containing type
2
// Line: 5
3
class
SampleClass
{
4
public static int operator
++ (
SampleClass
value
) {
5
return new
SampleClass
();
6
}
7
}