10 lines
192 B
Kotlin
Vendored
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() |