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

cs0554.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8d8a15076877a1fe5fa9b92e5b9fd74650fa244 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0554.cs: 'BaseClass.implicit operator BaseClass(DerivedClass)' : user defined conversion to/from derived class
// Line: 5

class BaseClass {
        public static implicit operator BaseClass(DerivedClass value) {
                return new BaseClass();
        }
}

class DerivedClass: BaseClass {
}