Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
controlStructures
/
kt1688.kt
blob: 0bbc232c5f13256934e902c19881d1ed2888aa57 [
file
]
fun box
():
String
{
var
s
=
""
try
{
throw
RuntimeException
()
}
catch
(
e
:
RuntimeException
)
{
}
finally
{
s
+=
"OK"
}
return
s
}