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