Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f467c970b2a4ee4ada1a66e72db80b847652c1d1
/
.
/
compiler
/
testData
/
ir
/
irText
/
expressions
/
throw.kt
blob: 91011f8199013e1d58aa9162f717dd728c04b591 [
file
] [
log
] [
blame
]
fun test1
()
{
throw
Throwable
()
}
fun testImplicitCast
(
a
:
Any
)
{
if
(
a
is
Throwable
)
{
throw
a
}
}