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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0559.cs
blob
a48efe69e6efda0bd4e097ed0fdb96b176b5391f
1
// CS0559: The parameter type for ++ or -- operator must be the containing type
2
// Line: 5
3
4
class
SampleClass
{
5
public static
SampleClass
operator
++ (
int value
) {
6
return new
SampleClass
();
7
}
8
}