Files
kotlin-fork/idea/testData/inspectionsLocal/redundantLambdaArrow/nestedLambda2.kt
T
2019-02-05 11:27:41 +03:00

9 lines
175 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun test() {
listOf("A").forEach {
listOf("B").forEach { _ ->
setOf(1).map { <caret>_ -> it.length }
}
}
}