can somebody describe, where instance of on OBJ ma...
# announcements
q
can somebody describe, where instance of on OBJ makes?
Copy code
class OBJ() {
    fun obj(initMethod: OBJ.() -> Unit) {
        val obj = OBJ()
        obj.initMethod()
    }
}