blob: e4b5b3c92d91552a4aaeb854c4c24ab8942787fe [file]
// "Replace scope function with safe (?.) call" "true"
// WITH_RUNTIME
fun foo(a: String?) {
val b = a
.let {
it<caret>.length
}
}