Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
145b5051f737bcd07fb6d5440a722cea8ba3f98c
/
.
/
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
}