Files
kotlin-fork/idea/testData/inspectionsLocal/complexRedundantLet/withInnerFunction.kt
T
2019-10-29 17:25:50 +07:00

11 lines
162 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
val a = randomValue().let<caret> { r ->
List(10, fun(it: Int): Int {
return r
})
}
fun randomValue(): Int = 42