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