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

6 lines
127 B
Kotlin
Vendored

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