6 lines
112 B
Kotlin
Vendored
6 lines
112 B
Kotlin
Vendored
fun test() {
|
|
myLoop@ for (i in -2..2) {
|
|
<caret>if (i > 0) i.hashCode()
|
|
else continue
|
|
}
|
|
} |