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

7 lines
99 B
Plaintext

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