Files
kotlin-fork/idea/testData/quickfix/replaceWithSafeCall/hasElvis2.kt.after
T
2021-03-23 11:04:33 +01:00

10 lines
163 B
Plaintext
Vendored

// "Replace with safe (this?.) call" "true"
// WITH_RUNTIME
var i = 0
fun foo(a: String?) {
a.run {
i = this?.length ?: 0
}
}
/* FIR_COMPARISON */