3c94184de9
#KT-7107 Fixed
6 lines
110 B
Kotlin
Vendored
6 lines
110 B
Kotlin
Vendored
fun test() {
|
|
bar@ for (n in 1..10) {
|
|
if (n == 5) continue@bar
|
|
if (n > 8) break@bar
|
|
}
|
|
} |