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

8 lines
143 B
Kotlin
Vendored

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