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

8 lines
105 B
Plaintext
Vendored

// MOVE: up
fun test(i: Int) {
if (i == 1) {
run {
}
<caret>println()
}
}