0b647ac358
Split testData into 'classes' and 'expressions'.
9 lines
119 B
Kotlin
Vendored
9 lines
119 B
Kotlin
Vendored
fun test1() {
|
|
throw Throwable()
|
|
}
|
|
|
|
fun testImplicitCast(a: Any) {
|
|
if (a is Throwable) {
|
|
throw a
|
|
}
|
|
} |