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