blob: 5b70434c85c5ea158ed0bc431bdfcc9286e780c5 [file]
// KIND: STANDALONE_LLDB
fun main() {
try {
throw Exception("message 1")
} catch (e1: Throwable) {
println(e1.message)
}
try {
throwError()
} catch (e2: Throwable) {
println(e2.message)
}
}
fun throwError() {
throw Error("message 2")
}