Files
kotlin-fork/compiler/testData/codegen/box/ranges/unsigned/kt35004.kt
T
2019-11-21 10:48:14 +03:00

11 lines
222 B
Kotlin
Vendored

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