Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/boxingOptimization/kt6842.kt
T
2016-03-09 10:25:38 +03:00

10 lines
161 B
Kotlin
Vendored

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