Files
kotlin-fork/idea/testData/intentions/branched/ifWhen/ifToWhen/withLoopExistingLabel.kt.after
T

8 lines
146 B
Plaintext
Vendored

fun test() {
myLoop@ for (i in -2..2) {
when {
i > 0 -> i.hashCode()
else -> continue@myLoop
}
}
}