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