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