Files
kotlin-fork/idea/testData/intentions/replaceSingleLineLetIntention/receiverWithLambda2.kt
T
2018-12-21 16:13:42 +03:00

9 lines
287 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
// This should be reported. However, in order to avoid too complicate logic, the intention ignore this case.
import java.util.*
fun baz2(foo: List<String>) {
foo.let<caret> { it.binarySearch("", Comparator<kotlin.String> { o1, o2 -> 0 }) }
}