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