Files
kotlin-fork/idea/testData/quickfix/replaceWithSafeCall/applyWithImplicitParameter.kt.after
T

7 lines
124 B
Plaintext
Vendored

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