Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
a94a6dc085d3d1f1010ea8bbc9d8754c3aa02b35
/
.
/
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
}