Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0559.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 964f1aff89bc3cd3d6db14ad6c24e69b90f93cda (plain)
1
2
3
4
5
6
7
8
// cs0559.cs: The parameter type for ++ or -- operator must be the containing type
// Line: 5

class SampleClass {
        public static SampleClass operator ++ (int value) {
                return new SampleClass();
        }
}