blob: a9044e119c79a7913d6fafbd6696591f04c954d2 [file] [log] [blame]
// "Replace scope function with safe (?.) call" "true"
// WITH_RUNTIME
var i = 0
fun foo(a: String?) {
i = a.run {
length<caret>
}
}