Files
kotlin-fork/compiler/testData/codegen/box/ranges/contains/uintInUIntRangeWithPossibleOverflow.kt
T

8 lines
141 B
Kotlin
Vendored

// WITH_RUNTIME
fun box(): String {
val x1 = 1U
if (x1 !in UInt.MIN_VALUE..UInt.MAX_VALUE)
return "Failed"
return "OK"
}