e15068c62f
^KT-61259
11 lines
298 B
Kotlin
Vendored
11 lines
298 B
Kotlin
Vendored
import kotlin.test.*
|
|
|
|
fun box(): String {
|
|
assertFailsWith(ArithmeticException::class, { 5 / 0 })
|
|
assertFailsWith(ArithmeticException::class, { 5 % 0 })
|
|
assertEquals(1, 5 / try { 0 / 0; 1 } catch (e: ArithmeticException) { 5 })
|
|
assertEquals(Double.NaN, 0.0 / 0.0)
|
|
|
|
return "OK"
|
|
}
|