blob: 87d2d2cfbaae742c448e0c42460dd7d042f4b4d7 [file] [log] [blame]
// "Replace scope function with safe (?.) call" "true"
// WITH_RUNTIME
fun foo(a: String?) {
a?.apply { ->
this.length
}
}