Files
kotlin/idea/testData/quickfix/replaceWithSafeCallForScopeFunction/also.kt

7 lines
138 B
Kotlin
Vendored

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