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