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

6 lines
112 B
Kotlin
Vendored

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