a2adfd0cc0
#KT-30173 Fixed
12 lines
177 B
Plaintext
Vendored
12 lines
177 B
Plaintext
Vendored
// FIX: Replace 'it' with explicit parameter
|
|
// WITH_RUNTIME
|
|
|
|
fun main() {
|
|
listOf(42).map {
|
|
it == 42
|
|
1.also { it1 ->
|
|
it1 == 42
|
|
}
|
|
}
|
|
}
|