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