Files
kotlin-fork/compiler/testData/diagnostics/tests/controlFlowAnalysis/propertiesInitWithOtherInstance.fir.kt
T

13 lines
248 B
Kotlin
Vendored

class A(val next: A? = null) {
val x: String
init {
next?.x = "a"
x = "b"
this.x = "c"
x = "d" // don't repeat the same diagnostic again with this receiver
this.x = "e"
next?.x = "f"
}
}