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

6 lines
123 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
fun baz(foo: String) {
foo.let<caret> { it.indexOfLast { c -> c == it[0] } }
}