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

9 lines
145 B
Kotlin
Vendored

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