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