blob: 0ac9035c315e405c798fd93e794034f72b8b95ae [file]
fun test1() {
throw Throwable()
}
fun testImplicitCast(a: Any) {
when {
a is Throwable -> { // BLOCK
throw a /*as Throwable */
}
}
}