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

7 lines
131 B
Plaintext
Vendored

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