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

9 lines
142 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo() {
val foo: String? = null
foo?.let {
it.to(it).to("").to("")<caret>
}
}