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