blob: 2dc2952a0adbafe5e148dff7c0c6cd57bc6ca72c [file] [log] [blame]
// "Replace with safe (this?.) call" "true"
// WITH_RUNTIME
fun foo(a: String?) {
a.apply {
this?.length
}
}