blob: 76bd6339f8767d922242c843ee9e03f02dd76e04 [file] [log] [blame]
fun test1() {
throw Throwable()
}
fun testImplicitCast(a: Any) {
when {
a is Throwable -> throw a /*as Throwable */
}
}