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

7 lines
125 B
Kotlin
Vendored

fun box(): String {
val x1 = 1L
if (x1 !in Long.MIN_VALUE..Long.MAX_VALUE)
return "Failed"
return "OK"
}