blob: d95196db153dd6f194e7c25492bc9c6912c98968 [file] [log] [blame]
// "Replace with safe (this?.) call" "true"
// WITH_RUNTIME
var i = 0
fun foo(a: String?) {
a.run {
i = this?.length ?: 0
}
}