Files
kotlin-fork/idea/testData/quickfix/replaceWithSafeCall/hasElvis2.kt.after
T
2019-10-21 23:28:19 +07:00

9 lines
142 B
Plaintext
Vendored

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