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

8 lines
142 B
Plaintext
Vendored

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