Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
ir
/
irText
/
expressions
/
kt48806.kt
blob: 37aba4022dffe213bffa051516bed104d071f084 [
file
] [
log
] [
blame
]
// IGNORE_BACKEND: JS_IR
// IGNORE_BACKEND: JS_IR_ES6
// ISSUE: KT-48806
class
A
{
val test_1
:
Int
=
try
{
throw
RuntimeException
()
}
catch
(
e
:
Exception
)
{
1
}
val test_2
:
Int
=
try
{
1
}
catch
(
e
:
Exception
)
{
throw
RuntimeException
()
}
}