Files
kotlin/idea/testData/quickfix/replaceWithSafeCall/let.kt.after

7 lines
116 B
Plaintext
Vendored

// "Replace with safe (?.) call" "true"
// WITH_RUNTIME
fun foo(a: String?) {
a.let {
it?.length
}
}