Files
kotlin-fork/compiler/testData/codegen/box/ranges/unsigned/outOfBoundsInMixedContains.kt
T
2020-11-19 17:39:26 +01:00

13 lines
243 B
Kotlin
Vendored

// WITH_RUNTIME
// KJS_WITH_FULL_RUNTIME
// IGNORE_BACKEND_FIR: JVM_IR
fun testIn(x: ULong) =
x in UInt.MIN_VALUE..UInt.MAX_VALUE
fun box(): String =
if (testIn(UInt.MAX_VALUE.toULong() + 1UL))
"Failed"
else
"OK"