kobiburnley
class Derived private constructor(val b: Base) : Base by b { constructor(init: Derived.() -> Unit): this(BaseImpl(2)) { init() } }