Looks great. I removed the DSL init from the prima...
# announcements
k
Looks great. I removed the DSL init from the primary constructor to make it shorter
Copy code
class Derived private constructor(val b: Base) : Base by b {
    constructor(init: Derived.() -> Unit): this(BaseImpl(2)) {
        init()
    }
}
👍 3