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

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