Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
70b97c5abe682fb7598fc5070d94c39256a0baa4
/
.
/
compiler
/
testData
/
codegen
/
box
/
controlStructures
/
breakInDoWhile.kt
blob: 735febb3cebea61dfafed5aa8ddb3735a5a79acf [
file
]
// ISSUE: KT-73130
var
trueCondition
=
true
fun box
():
String
{
do
{
if
(
trueCondition
)
{
break
}
return
"FAIL"
}
while
(
trueCondition
)
return
"OK"
}