Files
kotlin-fork/compiler/testData/codegen/box/specialBuiltins/throwable.kt
T
2019-12-11 16:54:15 +03:00

11 lines
196 B
Kotlin
Vendored

fun box(): String {
try {
throw Throwable("OK", null)
} catch (t: Throwable) {
if (t.cause != null) return "fail 1"
return t.message!!
}
return "fail 2"
}