Files
kotlin-fork/compiler/testData/codegen/box/ranges/unsigned/kt35004.kt
T

9 lines
167 B
Kotlin
Vendored

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