blob: 70f26cddc0d2772d217a2a95b218d383791763b4 [file] [log] [blame]
// "Replace with safe (?.) call" "true"
// WITH_RUNTIME
fun foo(a: String?) {
a.let {
it?.length
}
}