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

cs0557.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26977e8fea42fb3fc6b98cf33a6e2348d5612634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0557.cs: Duplicate user-defined conversion in class 'SampleClass'
// Line: 5

class SampleClass {
        public static implicit operator bool (SampleClass value) {
                return true;
        }
        
        public static implicit operator bool (SampleClass value) {
                return true;
        }
}