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

cs0448.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0016de5e05743dd2ee420d52bc8883d8e2733184 (plain)
1
2
3
4
5
6
7
// cs0448.cs: The return type for ++ or -- operator must be the containing type or derived from the containing type
// Line: 5
class SampleClass {
    public static int operator ++ (SampleClass value) {
        return new SampleClass();        
    }
}