blob: a98a1e8bb2881bde7818d0e176df2df6738626a5 [file] [log] [blame]
// "Remove 'lateinit' modifier" "true"
// ERROR: There's a cycle in the delegation calls chain
class Foo {
<caret>lateinit var bar: String
constructor() {
bar = ""
}
constructor(a: Int) : this(a) {
bar = "a"
}
}