c3aeaa9052
^KT-40283 Fixed
7 lines
141 B
Kotlin
Vendored
7 lines
141 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
fun test(){
|
|
listOf(1, 2, 3).also<caret> a@ { it.forEach { i ->
|
|
if (i % 2 == 0) return@a
|
|
}}
|
|
} |