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

7 lines
122 B
Kotlin
Vendored

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