Files

11 lines
137 B
Kotlin
Vendored

// FIR_IDENTICAL
fun test1() {
throw Throwable()
}
fun testImplicitCast(a: Any) {
if (a is Throwable) {
throw a
}
}