Files
kotlin-fork/idea/testData/codeInsight/moveUpDown/expressions/outOfNestedClosure1.kt
T
2013-07-09 18:33:33 +04:00

7 lines
108 B
Kotlin

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