blob: 5083700cb98aff3bc2a2738dc3dc5763c03c3f89 [file]
// WITH_STDLIB
import kotlin.test.*
fun box(): String {
val x = try {
throw Error()
5
} catch (e: Throwable) {
6
}
assertEquals(6, x)
return "OK"
}