a2adfd0cc0
#KT-30173 Fixed
12 lines
176 B
Kotlin
Vendored
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
|
|
}
|
|
}
|
|
}
|