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

8 lines
111 B
Kotlin
Vendored

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