e406669190
#KT-12329 Fixed
9 lines
163 B
Kotlin
Vendored
9 lines
163 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun test() {
|
|
for (x in "abc") {
|
|
if (x != 'a') {
|
|
<caret>if (x == 'b') continue
|
|
println("else")
|
|
}
|
|
}
|
|
} |