Files
kotlin-fork/compiler/testData/codegen/box/ranges/unsigned/kt35004.kt
T
2020-11-19 17:39:26 +01:00

11 lines
222 B
Kotlin
Vendored

// WITH_RUNTIME
// KJS_WITH_FULL_RUNTIME
// IGNORE_BACKEND_FIR: JVM_IR
fun ULong.foobar() =
when (this) {
in 0U..1U -> "OK"
else -> throw AssertionError("$this")
}
fun box(): String = 0UL.foobar()