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