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

8 lines
113 B
Kotlin

// MOVE: up
fun foo() {
run(1, 2) {
x ->
<caret>println("foo")
println("bar")
}
}