blob: e955aa39264efb6aa6a34cf50dcb76c4af796c70 [file]
// WITH_STDLIB
import kotlin.test.*
class C : Exception("OK")
fun box(): String {
try {
throw C()
} catch (e: Throwable) {
return e.message!!
}
return "FAIL"
}