Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b1f59e5f0d739fd4c19f9e413cc9c324657eafed
/
.
/
compiler
/
testData
/
cfg
/
controlStructures
/
continueInDoWhile.kt
blob: cd0fd86376b2a50d362e94147fab2e3dc9a4c4cd [
file
]
fun test
(
b
:
Boolean
)
{
do
{
if
(
b
)
break
;
continue
;
}
while
(
true
);
}