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

8 lines
122 B
Plaintext

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