Files
kotlin-fork/idea/testData/codeInsight/moveUpDown/expressions/closureInWhile2.kt
T

8 lines
119 B
Kotlin

// MOVE: up
fun foo(i: Int) {
while (i in run { 1..2 }) {
<caret>run {
}
println(i)
}
}