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

8 lines
111 B
Plaintext

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