Files
kotlin-fork/idea/testData/intentions/replaceSingleLineLetIntention/sameLets.kt.after
T

9 lines
140 B
Plaintext
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: true
fun foo() {
val foo: String? = null
foo?.toString()?.to("")?.let {
it.to("")
}
}