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