279b406bca
#KT-5009 Fixed
9 lines
121 B
Plaintext
Vendored
9 lines
121 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun main() {
|
|
val list = 1..4
|
|
|
|
for (x in list) {
|
|
if (x != 2) continue
|
|
list
|
|
}
|
|
} |