Hmm, yeah, that'd be an effective way to handle it...
# language-proposals
f
Hmm, yeah, that'd be an effective way to handle it.
Copy code
class Derived(b: Base) : Base by b, Comparable<Base> {
    override fun compareTo(o: Base) {
        ...
    }
}