Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b1f59e5f0d739fd4c19f9e413cc9c324657eafed
/
.
/
compiler
/
testData
/
cfg
/
controlStructures
/
continueInFor.kt
blob: 4a37fb1a138c0a0a7f5ec8b254827715b639fe00 [
file
]
fun test
(
b
:
Boolean
)
{
for
(
i
in
1.
.
10
)
{
if
(
b
)
break
;
continue
;
}
}