Files
kotlin/compiler/testData/codegen/box/ranges/forInUntil/forInUntilLesserInt.kt
Roman Artemev cc14442be1 Add tests for primitive companion object
Update test data
2018-08-24 14:58:42 +03:00

10 lines
186 B
Kotlin
Vendored

// 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"
}