13 lines
170 B
Kotlin
Vendored
13 lines
170 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// FULL_JDK
|
|
|
|
fun box(): String {
|
|
val w = listOf(1, 2)
|
|
|
|
val r = w.sumOf { x -> run { x } }
|
|
|
|
if (r != 3) return "fail 1: $r"
|
|
|
|
return "OK"
|
|
}
|