mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
11 lines
216 B
Kotlin
Vendored
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"
|
|
} |