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

cs0590.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa9b894fa7993dfd69c0262f9bd49d6a16d7c896 (plain)
1
2
3
4
5
6
7
8
// cs0590.cs: User-defined operators cannot return void
// Line: 5

class SampleClass {
        public static void operator - (SampleClass value) {
                return new SampleClass();
        }
}