mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
26 lines
642 B
Kotlin
Vendored
26 lines
642 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// IGNORE_BACKEND: JS_IR
|
|
// IGNORE_BACKEND: JS
|
|
// reason - no error from division by zero in JS
|
|
|
|
fun expectFail(f: () -> Unit): Nothing? {
|
|
try {
|
|
f()
|
|
} catch (e: ArithmeticException) {
|
|
return null
|
|
}
|
|
throw AssertionError("Expected ArithmeticException to be thrown")
|
|
}
|
|
|
|
fun box(): String {
|
|
val a1 = 0
|
|
val a2 = expectFail { 1 / 0 } ?: 0
|
|
val a3 = expectFail { 1 / a1 } ?: 0
|
|
val a4 = expectFail { 1 / a2 } ?: 0
|
|
val a5 = expectFail { 2 * (1 / 0) } ?: 0
|
|
val a6 = expectFail { 2 * 1 / 0 } ?: 0
|
|
|
|
val s1 = expectFail { "${2 * (1 / 0) }" } ?: "OK"
|
|
|
|
return s1
|
|
} |