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

11 lines
170 B
Kotlin
Vendored

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