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

cs0564.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f17be3f18468276c4c0ef8794801c3a0c47d7174 (plain)
1
2
3
4
5
6
7
8
// cs0564.cs: Overloaded shift operator must have the type of the first operand be the containing type, and the type of the second operand must be int
// Line: 5

class SampleClass {
        public static int operator << (SampleClass value, SampleClass count) {
                return 0;
        }
}