Files
kotlin/compiler/testData/codegen/box/ranges/forInUntil/forInUntilIntMaxValue.kt
2019-11-19 11:00:09 +03:00

12 lines
239 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// WITH_RUNTIME
import kotlin.test.assertEquals
fun box(): String {
for (i in Int.MAX_VALUE until Int.MAX_VALUE) {
throw AssertionError("This loop shoud not be executed")
}
return "OK"
}