// WITH_RUNTIME fun test(){ listOf(1, 2, 3).also { it.forEach { i -> if (i % 2 == 0) return@forEach }} }