c3aeaa9052
^KT-40283 Fixed
6 lines
107 B
Plaintext
Vendored
6 lines
107 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun test(){
|
|
listOf(1, 2, 3).onEach { i ->
|
|
if (i % 2 == 0) return@onEach
|
|
}
|
|
} |