blob: 91011f8199013e1d58aa9162f717dd728c04b591 [file] [log] [blame]
fun test1() {
throw Throwable()
}
fun testImplicitCast(a: Any) {
if (a is Throwable) {
throw a
}
}