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

7 lines
141 B
Kotlin
Vendored

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