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

7 lines
97 B
Kotlin

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