// "Remove 'lateinit' modifier" "true" class Foo { lateinit var bar: String constructor() { bar = "" } constructor(a: Int) : this() { } constructor(a: Int, b: Int) : this(a) { } }