13 lines
155 B
Plaintext
Vendored
13 lines
155 B
Plaintext
Vendored
fun test1() {
|
|
throw Throwable()
|
|
}
|
|
|
|
fun testImplicitCast(a: Any) {
|
|
when {
|
|
a is Throwable -> { // BLOCK
|
|
throw a /*as Throwable */
|
|
}
|
|
}
|
|
}
|
|
|