279b406bca
#KT-5009 Fixed
13 lines
180 B
Plaintext
Vendored
13 lines
180 B
Plaintext
Vendored
fun foo() {
|
|
for (i in 1..10) {
|
|
if (i > 3) {
|
|
<caret>if (i <= 5) continue
|
|
bar()
|
|
continue
|
|
}
|
|
bar()
|
|
}
|
|
}
|
|
|
|
fun bar(){}
|