Files
kotlin/idea/testData/quickfix/replaceWithSafeCallForScopeFunction/assignment.kt
2017-06-28 15:28:35 +03:00

9 lines
149 B
Kotlin
Vendored

// "Replace scope function with safe (?.) call" "true"
// WITH_RUNTIME
var i = 0
fun foo(a: String?) {
i = a.run {
length<caret>
}
}