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

7 lines
120 B
Kotlin
Vendored

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