blob: 7c6c29e98da1c90c29e0fca41d96a4c2ba16f9fb [file] [log] [blame]
// "Replace scope function with safe (?.) call" "true"
// WITH_RUNTIME
fun foo(a: String?) {
a.apply {
this@apply<caret>.length
}
}