Files
kotlin-fork/idea/testData/inspectionsLocal/nestedLambdaShadowedImplicitParameter/scopeFunction2.kt
T

10 lines
130 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun main() {
listOf(42).map {
it.let {
<caret>it == 42
}
}
}