Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eadcce82e781d7be850118e82333893ab7cf10a9
/
.
/
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"
}