715d5e90ba
We need to clean these up since primitive array `is` checks work now (cherry picked from commit b413e9ef51606c51ebfb21bd7ff646b0fb75470a)
29 lines
672 B
Kotlin
Vendored
29 lines
672 B
Kotlin
Vendored
fun test(b: Boolean): String {
|
|
val a = if (b) IntArray(5) else LongArray(5)
|
|
if (a is IntArray) {
|
|
val x = a.iterator()
|
|
var i = 0
|
|
while (x.hasNext()) {
|
|
if (a[i] != x.next()) return "Fail $i"
|
|
i++
|
|
}
|
|
return "OK"
|
|
} else if (a is LongArray) {
|
|
val x = a.iterator()
|
|
var i = 0
|
|
while (x.hasNext()) {
|
|
if (a[i] != x.next()) return "Fail $i"
|
|
i++
|
|
}
|
|
return "OK"
|
|
}
|
|
return "fail"
|
|
}
|
|
|
|
fun box(): String {
|
|
if (test(true) != "OK") return "fail 1: ${test(true)}"
|
|
|
|
if (test(false) != "OK") return "fail 1: ${test(false)}"
|
|
|
|
return "OK"
|
|
} |