Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
a6417fc509e4365c1ed6addd914701510995cdb2
/
.
/
compiler
/
testData
/
codegen
/
box
/
lazyCodegen
/
tryCatchExpression.kt
blob: 8617a79e1cf61d9a73bfcbb73dad436ef0c070dc [
file
] [
log
] [
blame
]
class
A
{
val p
:
Int
=
try
{
1
}
catch
(
e
:
Exception
)
{
throw
RuntimeException
()
}
}
fun box
()
:
String
{
if
(
A
().
p
!=
1
)
return
"fail 1"
return
"OK"
}