Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
controlStructures
/
breakInFinally.kt
blob: 14422270688064c649a1f7b5ec32c7f9509be2bc [
file
]
// DONT_TARGET_EXACT_BACKEND: WASM
// WASM_MUTE_REASON: EXCEPTIONS_NOT_IMPLEMENTED
fun box
():
String
{
while
(
true
)
{
try
{
continue
;
}
finally
{
break
;
}
}
return
"OK"
}