Files
kotlin-fork/backend.native/tests/runtime/exceptions/extend0.kt
T
2017-10-20 18:25:05 +03:00

13 lines
200 B
Kotlin

package runtime.exceptions.extend0
import kotlin.test.*
class C : Exception("OK")
@Test fun runTest() {
try {
throw C()
} catch (e: Throwable) {
println(e.message!!)
}
}