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