1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
15 lines
228 B
Kotlin
15 lines
228 B
Kotlin
// WITH_RUNTIME
|
|
|
|
import kotlin.test.assertEquals
|
|
|
|
fun box() : String {
|
|
val x = LongArray(5)
|
|
for (i in 0..4) {
|
|
x[i] = (i + 1).toLong()
|
|
}
|
|
|
|
assertEquals(15L, x.fold(0L) { x, y -> x + y })
|
|
|
|
return "OK"
|
|
}
|