Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
ir
/
irText
/
expressions
/
throw.fir.kt.txt
blob: 76bd6339f8767d922242c843ee9e03f02dd76e04 [
file
] [
log
] [
blame
]
fun test1() {
throw Throwable()
}
fun testImplicitCast(a: Any) {
when {
a is Throwable -> throw a /*as Throwable */
}
}