I’m working on KT-13011. I’m having a problem with...
# kontributors
s
I’m working on KT-13011. I’m having a problem with following case
Copy code
class Lateinit {
    lateinit var x: String

    constructor() {
        x = ""
    }

    constructor(a: Int): this() {
    }

}
In this case, lateinit is unnecessary. How can I get constructor()’s body from constructor(a: Int)?
getSecondaryConstructors()[0].getDelegationCall()
only give me info about
this()
.