Files
kotlin-fork/compiler/testData/codegen/box/ranges/unsigned/kt35004.kt
T
2020-11-27 10:56:07 +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()