mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
9 lines
154 B
Plaintext
Vendored
9 lines
154 B
Plaintext
Vendored
// "Replace scope function with safe (?.) call" "true"
|
|
// WITH_RUNTIME
|
|
var i = 0
|
|
|
|
fun foo(a: String?) {
|
|
i = a?.run {
|
|
length
|
|
} ?: <caret>
|
|
} |