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

11 lines
216 B
Kotlin
Vendored

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