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