Files
kotlin-fork/compiler/testData/codegen/box/boxingOptimization/kt6842.kt
T
2018-06-09 19:15:38 +03:00

11 lines
186 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
// WITH_RUNTIME
import kotlin.test.assertEquals
fun box(): String {
val x = (10L..50).map { it * 40L }
assertEquals(400L, x.first())
return "OK"
}