Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f467c970b2a4ee4ada1a66e72db80b847652c1d1
/
.
/
compiler
/
testData
/
ir
/
irText
/
expressions
/
throw.kt.txt
blob: 0ac9035c315e405c798fd93e794034f72b8b95ae [
file
]
fun test1() {
throw Throwable()
}
fun testImplicitCast(a: Any) {
when {
a is Throwable -> { // BLOCK
throw a /*as Throwable */
}
}
}