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

8 lines
121 B
Plaintext

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