Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
controlStructures
/
breakInFinally.kt
blob: d761ee60360f0d590bdd894b97dd6f65efc58641 [
file
]
fun box
():
String
{
while
(
true
)
{
try
{
continue
;
}
finally
{
break
;
}
}
return
"OK"
}