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

12 lines
176 B
Kotlin
Vendored

// FIX: Replace 'it' with explicit parameter
// WITH_RUNTIME
fun main() {
listOf(42).map {
it == 42
1.also {
<caret>it == 42
}
}
}