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

8 lines
145 B
Kotlin
Vendored

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