blob: 93e02f96bd0ad7ffd46e02d6cf38cd6b965f3759 [file] [log] [blame]
// "Replace scope function with safe (?.) call" "true"
// WITH_RUNTIME
fun foo(a: String?) {
a?.apply {
toLowerCase()
}
}