Files
kotlin-fork/idea/testData/quickfix/replaceWithSafeCallForScopeFunction/lineBreak.kt
T
2019-09-25 12:06:51 +07:00

8 lines
174 B
Kotlin
Vendored

// "Replace scope function with safe (?.) call" "true"
// WITH_RUNTIME
fun foo(a: String?) {
val b = a
.let {
it<caret>.length
}
}