e8effe6727
#KT-34432 Fixed
9 lines
143 B
Kotlin
Vendored
9 lines
143 B
Kotlin
Vendored
// "Replace with safe (this?.) call" "true"
|
|
// WITH_RUNTIME
|
|
var i = 0
|
|
|
|
fun foo(a: String?) {
|
|
a.run {
|
|
i = <caret>length ?: 0
|
|
}
|
|
} |