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

cs0590-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8da8d49f1b6c7db5153f281a92bc2dd7eb128e6a (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, int value) {
                return null;
        }
}