Files
kotlin-fork/compiler/testData/codegen/box/ranges/unsigned/kt35004.kt
T
2020-03-24 18:58:19 +03:00

10 lines
192 B
Kotlin
Vendored

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