Files
kotlin-fork/compiler/testData/codegen/box/ranges/unsigned/outOfBoundsInMixedContains.kt
T
2020-11-27 10:56:07 +03:00

12 lines
213 B
Kotlin
Vendored

// WITH_RUNTIME
// KJS_WITH_FULL_RUNTIME
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"