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

7 lines
126 B
Kotlin
Vendored

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