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