Files
kotlin-fork/backend.native/tests/runtime/exceptions/extend0.kt
T

9 lines
152 B
Kotlin

class C : Exception("OK")
fun main(args: Array<String>) {
try {
throw C()
} catch (e: Throwable) {
println(e.message!!)
}
}