blob: bbda28a0a3cff1180bd0c7be20a86e1f621016ec [file]
// "Replace with safe (this?.) call" "true"
// WITH_RUNTIME
fun foo(a: String?) {
a.apply {
this?.toLowerCase()
}
}