Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
quickfix
/
when
/
continueInWhenWithLabel.kt.after
blob: 63f96a83170890b90348c16c419ddbd2cb76269e [
file
]
// "Add label to loop" "true"
fun breakContinueInWhen
(
i
:
Int
)
{
loop@
for
(
x
in
0.
.
10
)
{
loop1@
for
(
y
in
0.
.
10
)
{
when
(
i
)
{
0
->
co
<caret>
ntinue@loop1
2
->
{
for
(
z
in
0.
.
10
)
{
break
}
for
(
w
in
0.
.
10
)
{
continue
}
}
}
}
}
}