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