Files
kotlin/idea/testData/quickfix/replaceWithSafeCall/applyWithImplicitParameterFunctionCall.kt

7 lines
132 B
Kotlin
Vendored

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