mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
12 lines
239 B
Kotlin
Vendored
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"
|
|
}
|