Files
kotlin-fork/idea/testData/codeInsight/moveUpDown/expressions/lambdaInDoWhile.kt.after
T
2020-05-09 22:08:02 +02:00

8 lines
113 B
Plaintext
Vendored

// MOVE: down
fun test(i: Int) {
do {
<caret>println()
run {
}
} while (i == 1)
}