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

7 lines
124 B
Kotlin
Vendored

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