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