20 lines
491 B
Kotlin
Vendored
20 lines
491 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM
|
|
// See KT-38833: Runtime exception is "java.lang.ClassCastException: java.lang.Integer cannot be cast to kotlin.UInt"
|
|
// IGNORE_LIGHT_ANALYSIS
|
|
// WITH_RUNTIME
|
|
// KJS_WITH_FULL_RUNTIME
|
|
// IGNORE_BACKEND_FIR: JVM_IR
|
|
|
|
fun box(): String {
|
|
var result = 0u
|
|
val uIntRange = 1u..3u
|
|
for (i: UInt? in uIntRange) {
|
|
result = sum(result, i)
|
|
}
|
|
return if (result == 6u) "OK" else "fail: $result"
|
|
}
|
|
|
|
fun sum(i: UInt, z: UInt?): UInt {
|
|
return i + z!!
|
|
}
|