Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlFlowAnalysis
/
breakContinueInTryFinally.fir.kt
blob: cd3d5ee92edc3da22db027cb07f25b2841a4794f [
file
]
fun foo
()
{
outer@while
(
true
)
{
try
{
while
(
true
)
{
continue
@outer
}
}
finally
{
break
}
}
"OK"
.
hashCode
()
}
fun bar
():
String
{
outer@while
(
true
)
{
try
{
while
(
true
)
{
continue
@outer
}
}
finally
{
return
"OK"
}
}
}